Code source

Replicated code from Jenny Trickey’s repo here

Trip/drift: CalCurCEAS_2024_009

Summaries generated: 2025 Jun 03 14:08 UTC

Setup

Load needed libraries.

# load all libraries
devtools::install_github('taikisan21/PAMpal')
library(PAMpal)
# library(kableExtra) # known bug with R ver 4.3.0 so install from github
devtools::install_github('kupietz/kableExtra')
library(kableExtra)
library(ggplot2)
library(RSQLite)
library(tuneR)
# library(wesanderson)
library(here)
library(DBI)

# I don't think we need these but saving here in case
library(dplyr)
# library(tcltk)
# library(manipulate)

Set user-defined variables.

# name project
# ProjID <- 'MHI UxS Glider Project'

# combine trip, recorder, pg version (all defined in YAML) to single run string
# dbFileStr <- paste0(params$mission, '_', params$drift, '_Kogia_', params$pgver)

# define subfolder paths based on selected analysis folder and trip strings
# path_to_db <- file.path(params$path_pg, 'Database')
# path_to_binaries <- file.path(params$path_pg, 'Binaries', params$drift)
path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main binaries folder")
# assemble some file names
# pamguard database
# dbFile <- file.path(path_to_db, paste0(dbFileStr, '.sqlite3'))
dbFile <- file.choose()
# dbFile <- choose.files(default = "", caption = "Select database file", multi = FALSE)
# already processed acoustic study 'dets' file
detsFile <- file.path(params$path_dets, paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_Filtered.rdata'))
detsFiltFile <- file.path(params$path_dets, 
                          paste0(params$mission, '_', params$drift,'/', params$mission, '_2024_', params$drift, '_', params$channelStr, '.rdata'))
# specify calibration file
# calFile <- params$calFile # pull from YAML

# set path to reference spectra if will be used
path_to_refSpec <- file.path(params$path_to_refSpec) # pull from YAML
# specify which reference spectra to plot
# refSpecList = c('Gm', 'Pc')
refSpecList <- params$refSpecList # pull from YAML
refSpecSp <- params$refSpecSp


# ALTERNATIVE SELECT PATHS
# path_pg <- choose.dir(default = "", caption = "Select path to pamguard folder that contains databases and binaries folders")
# # select path to database files 
# path_to_db <- choose.dir(default = "", caption = "Select path to folder with all database files") 
# # select path to specific binary drift file
# path_to_binaries <- choose.dir(default="", caption = "Select path to specific drift main folder")

# # set up datebase driver
# sqlite <- dbDriver("SQLite") # outdated/no longer supported 

# connect to SQLite database using the newer method
con <- dbConnect(RSQLite::SQLite(), dbname = dbFile)

#Set time zone to UTC
Sys.setenv(TZ = 'UTC')

# reference spectra colors - allows for up to 6 ref specs
# pastel
# rsPalette <- c('#66c2a5', '#fc8d62', '#8da0cb', '#e78ac3', 
#                '#a6d854', '#ffd92f')
# bold
rsPalette <- c('#1b9e77', '#d95f02', '#7570b3', '#e7298a', 
               '#66a61e', '#e6ab02')

Define needed functions

Source some external functions

source(here::here('_code/functions', 'loadMultiBinaries.R'))
source(here::here('_code/functions', 'plotContours.R'))
source(here::here('_code/functions', 'clickSummary.R'))
source(here::here('_code/functions', 'whistleSummary.R'))

# if not using Rproj/here package use:
# source(file.path(params$path_code, 'R', 'functions', 'loadMultiBinaries.R'))

Load and prep AcousticStudies

If already created, load an existing dets PAMpal AcousticStudy object for event processing. We need to load both the unfiltered dets and filtered detsFilt AcousticStudies.

# load existing dets AcousticStudy (created with 
# workflow_generate_acousticStudies.R)
# load(detFile)
if (file.exists(detsFile)){
  dets <- readRDS(detsFile)
  cat('Loaded', detsFile, '\n')
} else {
  cat('No AcousticStudy \'dets\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_009/CalCurCEAS_2024_009_Filtered.rdata
if (file.exists(detsFiltFile)){
  detsFilt <- readRDS(detsFiltFile)
  cat('Loaded', detsFiltFile, '\n')
} else {
  cat('No AcousticStudy \'detsFilt\' file available', '\n')
}
## Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_009/CalCurCEAS_2024_009_ch1.rdata
# summarize how many events
nEvents <- length(names(PAMpal::events(dets)))
# number of events may change after filtering (all clicks may be filtered out)
nEventsFilt <- length(names(PAMpal::events(detsFilt)))

Loaded Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_009/CalCurCEAS_2024_009_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_009/CalCurCEAS_2024_009_ch1.rdata

## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 7579 out of 7579 missing binary files. 
## Updating files in events...
##   |                                                                                                                                       |                                                                                                                               |   0%  |                                                                                                                                       |=                                                                                                                              |   0%  |                                                                                                                                       |=                                                                                                                              |   1%  |                                                                                                                                       |==                                                                                                                             |   1%  |                                                                                                                                       |==                                                                                                                             |   2%  |                                                                                                                                       |===                                                                                                                            |   2%  |                                                                                                                                       |===                                                                                                                            |   3%  |                                                                                                                                       |====                                                                                                                           |   3%  |                                                                                                                                       |====                                                                                                                           |   4%  |                                                                                                                                       |=====                                                                                                                          |   4%  |                                                                                                                                       |======                                                                                                                         |   4%  |                                                                                                                                       |======                                                                                                                         |   5%  |                                                                                                                                       |=======                                                                                                                        |   5%  |                                                                                                                                       |=======                                                                                                                        |   6%  |                                                                                                                                       |========                                                                                                                       |   6%  |                                                                                                                                       |========                                                                                                                       |   7%  |                                                                                                                                       |=========                                                                                                                      |   7%  |                                                                                                                                       |==========                                                                                                                     |   8%  |                                                                                                                                       |===========                                                                                                                    |   8%  |                                                                                                                                       |===========                                                                                                                    |   9%  |                                                                                                                                       |============                                                                                                                   |   9%  |                                                                                                                                       |============                                                                                                                   |  10%  |                                                                                                                                       |=============                                                                                                                  |  10%  |                                                                                                                                       |=============                                                                                                                  |  11%  |                                                                                                                                       |==============                                                                                                                 |  11%  |                                                                                                                                       |===============                                                                                                                |  11%  |                                                                                                                                       |===============                                                                                                                |  12%  |                                                                                                                                       |================                                                                                                               |  12%  |                                                                                                                                       |================                                                                                                               |  13%  |                                                                                                                                       |=================                                                                                                              |  13%  |                                                                                                                                       |=================                                                                                                              |  14%  |                                                                                                                                       |==================                                                                                                             |  14%  |                                                                                                                                       |==================                                                                                                             |  15%  |                                                                                                                                       |===================                                                                                                            |  15%  |                                                                                                                                       |====================                                                                                                           |  15%  |                                                                                                                                       |====================                                                                                                           |  16%  |                                                                                                                                       |=====================                                                                                                          |  16%  |                                                                                                                                       |=====================                                                                                                          |  17%  |                                                                                                                                       |======================                                                                                                         |  17%  |                                                                                                                                       |======================                                                                                                         |  18%  |                                                                                                                                       |=======================                                                                                                        |  18%  |                                                                                                                                       |========================                                                                                                       |  19%  |                                                                                                                                       |=========================                                                                                                      |  19%  |                                                                                                                                       |=========================                                                                                                      |  20%  |                                                                                                                                       |==========================                                                                                                     |  20%  |                                                                                                                                       |==========================                                                                                                     |  21%  |                                                                                                                                       |===========================                                                                                                    |  21%  |                                                                                                                                       |===========================                                                                                                    |  22%  |                                                                                                                                       |============================                                                                                                   |  22%  |                                                                                                                                       |=============================                                                                                                  |  22%  |                                                                                                                                       |=============================                                                                                                  |  23%  |                                                                                                                                       |==============================                                                                                                 |  23%  |                                                                                                                                       |==============================                                                                                                 |  24%  |                                                                                                                                       |===============================                                                                                                |  24%  |                                                                                                                                       |===============================                                                                                                |  25%  |                                                                                                                                       |================================                                                                                               |  25%  |                                                                                                                                       |================================                                                                                               |  26%  |                                                                                                                                       |=================================                                                                                              |  26%  |                                                                                                                                       |==================================                                                                                             |  26%  |                                                                                                                                       |==================================                                                                                             |  27%  |                                                                                                                                       |===================================                                                                                            |  27%  |                                                                                                                                       |===================================                                                                                            |  28%  |                                                                                                                                       |====================================                                                                                           |  28%  |                                                                                                                                       |====================================                                                                                           |  29%  |                                                                                                                                       |=====================================                                                                                          |  29%  |                                                                                                                                       |=====================================                                                                                          |  30%  |                                                                                                                                       |======================================                                                                                         |  30%  |                                                                                                                                       |=======================================                                                                                        |  30%  |                                                                                                                                       |=======================================                                                                                        |  31%  |                                                                                                                                       |========================================                                                                                       |  31%  |                                                                                                                                       |========================================                                                                                       |  32%  |                                                                                                                                       |=========================================                                                                                      |  32%  |                                                                                                                                       |=========================================                                                                                      |  33%  |                                                                                                                                       |==========================================                                                                                     |  33%  |                                                                                                                                       |===========================================                                                                                    |  33%  |                                                                                                                                       |===========================================                                                                                    |  34%  |                                                                                                                                       |============================================                                                                                   |  34%  |                                                                                                                                       |============================================                                                                                   |  35%  |                                                                                                                                       |=============================================                                                                                  |  35%  |                                                                                                                                       |=============================================                                                                                  |  36%  |                                                                                                                                       |==============================================                                                                                 |  36%  |                                                                                                                                       |==============================================                                                                                 |  37%  |                                                                                                                                       |===============================================                                                                                |  37%  |                                                                                                                                       |================================================                                                                               |  37%  |                                                                                                                                       |================================================                                                                               |  38%  |                                                                                                                                       |=================================================                                                                              |  38%  |                                                                                                                                       |=================================================                                                                              |  39%  |                                                                                                                                       |==================================================                                                                             |  39%  |                                                                                                                                       |==================================================                                                                             |  40%  |                                                                                                                                       |===================================================                                                                            |  40%  |                                                                                                                                       |===================================================                                                                            |  41%  |                                                                                                                                       |====================================================                                                                           |  41%  |                                                                                                                                       |=====================================================                                                                          |  41%  |                                                                                                                                       |=====================================================                                                                          |  42%  |                                                                                                                                       |======================================================                                                                         |  42%  |                                                                                                                                       |======================================================                                                                         |  43%  |                                                                                                                                       |=======================================================                                                                        |  43%  |                                                                                                                                       |=======================================================                                                                        |  44%  |                                                                                                                                       |========================================================                                                                       |  44%  |                                                                                                                                       |=========================================================                                                                      |  44%  |                                                                                                                                       |=========================================================                                                                      |  45%  |                                                                                                                                       |==========================================================                                                                     |  45%  |                                                                                                                                       |==========================================================                                                                     |  46%  |                                                                                                                                       |===========================================================                                                                    |  46%  |                                                                                                                                       |===========================================================                                                                    |  47%  |                                                                                                                                       |============================================================                                                                   |  47%  |                                                                                                                                       |============================================================                                                                   |  48%  |                                                                                                                                       |=============================================================                                                                  |  48%  |                                                                                                                                       |==============================================================                                                                 |  48%  |                                                                                                                                       |==============================================================                                                                 |  49%  |                                                                                                                                       |===============================================================                                                                |  49%  |                                                                                                                                       |===============================================================                                                                |  50%  |                                                                                                                                       |================================================================                                                               |  50%  |                                                                                                                                       |================================================================                                                               |  51%  |                                                                                                                                       |=================================================================                                                              |  51%  |                                                                                                                                       |=================================================================                                                              |  52%  |                                                                                                                                       |==================================================================                                                             |  52%  |                                                                                                                                       |===================================================================                                                            |  52%  |                                                                                                                                       |===================================================================                                                            |  53%  |                                                                                                                                       |====================================================================                                                           |  53%  |                                                                                                                                       |====================================================================                                                           |  54%  |                                                                                                                                       |=====================================================================                                                          |  54%  |                                                                                                                                       |=====================================================================                                                          |  55%  |                                                                                                                                       |======================================================================                                                         |  55%  |                                                                                                                                       |======================================================================                                                         |  56%  |                                                                                                                                       |=======================================================================                                                        |  56%  |                                                                                                                                       |========================================================================                                                       |  56%  |                                                                                                                                       |========================================================================                                                       |  57%  |                                                                                                                                       |=========================================================================                                                      |  57%  |                                                                                                                                       |=========================================================================                                                      |  58%  |                                                                                                                                       |==========================================================================                                                     |  58%  |                                                                                                                                       |==========================================================================                                                     |  59%  |                                                                                                                                       |===========================================================================                                                    |  59%  |                                                                                                                                       |============================================================================                                                   |  59%  |                                                                                                                                       |============================================================================                                                   |  60%  |                                                                                                                                       |=============================================================================                                                  |  60%  |                                                                                                                                       |=============================================================================                                                  |  61%  |                                                                                                                                       |==============================================================================                                                 |  61%  |                                                                                                                                       |==============================================================================                                                 |  62%  |                                                                                                                                       |===============================================================================                                                |  62%  |                                                                                                                                       |===============================================================================                                                |  63%  |                                                                                                                                       |================================================================================                                               |  63%  |                                                                                                                                       |=================================================================================                                              |  63%  |                                                                                                                                       |=================================================================================                                              |  64%  |                                                                                                                                       |==================================================================================                                             |  64%  |                                                                                                                                       |==================================================================================                                             |  65%  |                                                                                                                                       |===================================================================================                                            |  65%  |                                                                                                                                       |===================================================================================                                            |  66%  |                                                                                                                                       |====================================================================================                                           |  66%  |                                                                                                                                       |====================================================================================                                           |  67%  |                                                                                                                                       |=====================================================================================                                          |  67%  |                                                                                                                                       |======================================================================================                                         |  67%  |                                                                                                                                       |======================================================================================                                         |  68%  |                                                                                                                                       |=======================================================================================                                        |  68%  |                                                                                                                                       |=======================================================================================                                        |  69%  |                                                                                                                                       |========================================================================================                                       |  69%  |                                                                                                                                       |========================================================================================                                       |  70%  |                                                                                                                                       |=========================================================================================                                      |  70%  |                                                                                                                                       |==========================================================================================                                     |  70%  |                                                                                                                                       |==========================================================================================                                     |  71%  |                                                                                                                                       |===========================================================================================                                    |  71%  |                                                                                                                                       |===========================================================================================                                    |  72%  |                                                                                                                                       |============================================================================================                                   |  72%  |                                                                                                                                       |============================================================================================                                   |  73%  |                                                                                                                                       |=============================================================================================                                  |  73%  |                                                                                                                                       |=============================================================================================                                  |  74%  |                                                                                                                                       |==============================================================================================                                 |  74%  |                                                                                                                                       |===============================================================================================                                |  74%  |                                                                                                                                       |===============================================================================================                                |  75%  |                                                                                                                                       |================================================================================================                               |  75%  |                                                                                                                                       |================================================================================================                               |  76%  |                                                                                                                                       |=================================================================================================                              |  76%  |                                                                                                                                       |=================================================================================================                              |  77%  |                                                                                                                                       |==================================================================================================                             |  77%  |                                                                                                                                       |==================================================================================================                             |  78%  |                                                                                                                                       |===================================================================================================                            |  78%  |                                                                                                                                       |====================================================================================================                           |  78%  |                                                                                                                                       |====================================================================================================                           |  79%  |                                                                                                                                       |=====================================================================================================                          |  79%  |                                                                                                                                       |=====================================================================================================                          |  80%  |                                                                                                                                       |======================================================================================================                         |  80%  |                                                                                                                                       |======================================================================================================                         |  81%  |                                                                                                                                       |=======================================================================================================                        |  81%  |                                                                                                                                       |========================================================================================================                       |  82%  |                                                                                                                                       |=========================================================================================================                      |  82%  |                                                                                                                                       |=========================================================================================================                      |  83%  |                                                                                                                                       |==========================================================================================================                     |  83%  |                                                                                                                                       |==========================================================================================================                     |  84%  |                                                                                                                                       |===========================================================================================================                    |  84%  |                                                                                                                                       |===========================================================================================================                    |  85%  |                                                                                                                                       |============================================================================================================                   |  85%  |                                                                                                                                       |=============================================================================================================                  |  85%  |                                                                                                                                       |=============================================================================================================                  |  86%  |                                                                                                                                       |==============================================================================================================                 |  86%  |                                                                                                                                       |==============================================================================================================                 |  87%  |                                                                                                                                       |===============================================================================================================                |  87%  |                                                                                                                                       |===============================================================================================================                |  88%  |                                                                                                                                       |================================================================================================================               |  88%  |                                                                                                                                       |================================================================================================================               |  89%  |                                                                                                                                       |=================================================================================================================              |  89%  |                                                                                                                                       |==================================================================================================================             |  89%  |                                                                                                                                       |==================================================================================================================             |  90%  |                                                                                                                                       |===================================================================================================================            |  90%  |                                                                                                                                       |===================================================================================================================            |  91%  |                                                                                                                                       |====================================================================================================================           |  91%  |                                                                                                                                       |====================================================================================================================           |  92%  |                                                                                                                                       |=====================================================================================================================          |  92%  |                                                                                                                                       |======================================================================================================================         |  93%  |                                                                                                                                       |=======================================================================================================================        |  93%  |                                                                                                                                       |=======================================================================================================================        |  94%  |                                                                                                                                       |========================================================================================================================       |  94%  |                                                                                                                                       |========================================================================================================================       |  95%  |                                                                                                                                       |=========================================================================================================================      |  95%  |                                                                                                                                       |=========================================================================================================================      |  96%  |                                                                                                                                       |==========================================================================================================================     |  96%  |                                                                                                                                       |===========================================================================================================================    |  96%  |                                                                                                                                       |===========================================================================================================================    |  97%  |                                                                                                                                       |============================================================================================================================   |  97%  |                                                                                                                                       |============================================================================================================================   |  98%  |                                                                                                                                       |=============================================================================================================================  |  98%  |                                                                                                                                       |=============================================================================================================================  |  99%  |                                                                                                                                       |============================================================================================================================== |  99%  |                                                                                                                                       |============================================================================================================================== | 100%  |                                                                                                                                       |===============================================================================================================================| 100%
## Updated the locations of 1 out of 1 missing database files. 
## Updated the locations of 7579 out of 7579 missing binary files. 
## Updating files in events...
##   |                                                                                                                                       |                                                                                                                               |   0%  |                                                                                                                                       |=                                                                                                                              |   0%  |                                                                                                                                       |=                                                                                                                              |   1%  |                                                                                                                                       |==                                                                                                                             |   1%  |                                                                                                                                       |==                                                                                                                             |   2%  |                                                                                                                                       |===                                                                                                                            |   2%  |                                                                                                                                       |===                                                                                                                            |   3%  |                                                                                                                                       |====                                                                                                                           |   3%  |                                                                                                                                       |====                                                                                                                           |   4%  |                                                                                                                                       |=====                                                                                                                          |   4%  |                                                                                                                                       |======                                                                                                                         |   4%  |                                                                                                                                       |======                                                                                                                         |   5%  |                                                                                                                                       |=======                                                                                                                        |   5%  |                                                                                                                                       |=======                                                                                                                        |   6%  |                                                                                                                                       |========                                                                                                                       |   6%  |                                                                                                                                       |========                                                                                                                       |   7%  |                                                                                                                                       |=========                                                                                                                      |   7%  |                                                                                                                                       |==========                                                                                                                     |   8%  |                                                                                                                                       |===========                                                                                                                    |   8%  |                                                                                                                                       |===========                                                                                                                    |   9%  |                                                                                                                                       |============                                                                                                                   |   9%  |                                                                                                                                       |============                                                                                                                   |  10%  |                                                                                                                                       |=============                                                                                                                  |  10%  |                                                                                                                                       |=============                                                                                                                  |  11%  |                                                                                                                                       |==============                                                                                                                 |  11%  |                                                                                                                                       |===============                                                                                                                |  11%  |                                                                                                                                       |===============                                                                                                                |  12%  |                                                                                                                                       |================                                                                                                               |  12%  |                                                                                                                                       |================                                                                                                               |  13%  |                                                                                                                                       |=================                                                                                                              |  13%  |                                                                                                                                       |=================                                                                                                              |  14%  |                                                                                                                                       |==================                                                                                                             |  14%  |                                                                                                                                       |==================                                                                                                             |  15%  |                                                                                                                                       |===================                                                                                                            |  15%  |                                                                                                                                       |====================                                                                                                           |  15%  |                                                                                                                                       |====================                                                                                                           |  16%  |                                                                                                                                       |=====================                                                                                                          |  16%  |                                                                                                                                       |=====================                                                                                                          |  17%  |                                                                                                                                       |======================                                                                                                         |  17%  |                                                                                                                                       |======================                                                                                                         |  18%  |                                                                                                                                       |=======================                                                                                                        |  18%  |                                                                                                                                       |========================                                                                                                       |  19%  |                                                                                                                                       |=========================                                                                                                      |  19%  |                                                                                                                                       |=========================                                                                                                      |  20%  |                                                                                                                                       |==========================                                                                                                     |  20%  |                                                                                                                                       |==========================                                                                                                     |  21%  |                                                                                                                                       |===========================                                                                                                    |  21%  |                                                                                                                                       |===========================                                                                                                    |  22%  |                                                                                                                                       |============================                                                                                                   |  22%  |                                                                                                                                       |=============================                                                                                                  |  22%  |                                                                                                                                       |=============================                                                                                                  |  23%  |                                                                                                                                       |==============================                                                                                                 |  23%  |                                                                                                                                       |==============================                                                                                                 |  24%  |                                                                                                                                       |===============================                                                                                                |  24%  |                                                                                                                                       |===============================                                                                                                |  25%  |                                                                                                                                       |================================                                                                                               |  25%  |                                                                                                                                       |================================                                                                                               |  26%  |                                                                                                                                       |=================================                                                                                              |  26%  |                                                                                                                                       |==================================                                                                                             |  26%  |                                                                                                                                       |==================================                                                                                             |  27%  |                                                                                                                                       |===================================                                                                                            |  27%  |                                                                                                                                       |===================================                                                                                            |  28%  |                                                                                                                                       |====================================                                                                                           |  28%  |                                                                                                                                       |====================================                                                                                           |  29%  |                                                                                                                                       |=====================================                                                                                          |  29%  |                                                                                                                                       |=====================================                                                                                          |  30%  |                                                                                                                                       |======================================                                                                                         |  30%  |                                                                                                                                       |=======================================                                                                                        |  30%  |                                                                                                                                       |=======================================                                                                                        |  31%  |                                                                                                                                       |========================================                                                                                       |  31%  |                                                                                                                                       |========================================                                                                                       |  32%  |                                                                                                                                       |=========================================                                                                                      |  32%  |                                                                                                                                       |=========================================                                                                                      |  33%  |                                                                                                                                       |==========================================                                                                                     |  33%  |                                                                                                                                       |===========================================                                                                                    |  33%  |                                                                                                                                       |===========================================                                                                                    |  34%  |                                                                                                                                       |============================================                                                                                   |  34%  |                                                                                                                                       |============================================                                                                                   |  35%  |                                                                                                                                       |=============================================                                                                                  |  35%  |                                                                                                                                       |=============================================                                                                                  |  36%  |                                                                                                                                       |==============================================                                                                                 |  36%  |                                                                                                                                       |==============================================                                                                                 |  37%  |                                                                                                                                       |===============================================                                                                                |  37%  |                                                                                                                                       |================================================                                                                               |  37%  |                                                                                                                                       |================================================                                                                               |  38%  |                                                                                                                                       |=================================================                                                                              |  38%  |                                                                                                                                       |=================================================                                                                              |  39%  |                                                                                                                                       |==================================================                                                                             |  39%  |                                                                                                                                       |==================================================                                                                             |  40%  |                                                                                                                                       |===================================================                                                                            |  40%  |                                                                                                                                       |===================================================                                                                            |  41%  |                                                                                                                                       |====================================================                                                                           |  41%  |                                                                                                                                       |=====================================================                                                                          |  41%  |                                                                                                                                       |=====================================================                                                                          |  42%  |                                                                                                                                       |======================================================                                                                         |  42%  |                                                                                                                                       |======================================================                                                                         |  43%  |                                                                                                                                       |=======================================================                                                                        |  43%  |                                                                                                                                       |=======================================================                                                                        |  44%  |                                                                                                                                       |========================================================                                                                       |  44%  |                                                                                                                                       |=========================================================                                                                      |  44%  |                                                                                                                                       |=========================================================                                                                      |  45%  |                                                                                                                                       |==========================================================                                                                     |  45%  |                                                                                                                                       |==========================================================                                                                     |  46%  |                                                                                                                                       |===========================================================                                                                    |  46%  |                                                                                                                                       |===========================================================                                                                    |  47%  |                                                                                                                                       |============================================================                                                                   |  47%  |                                                                                                                                       |============================================================                                                                   |  48%  |                                                                                                                                       |=============================================================                                                                  |  48%  |                                                                                                                                       |==============================================================                                                                 |  48%  |                                                                                                                                       |==============================================================                                                                 |  49%  |                                                                                                                                       |===============================================================                                                                |  49%  |                                                                                                                                       |===============================================================                                                                |  50%  |                                                                                                                                       |================================================================                                                               |  50%  |                                                                                                                                       |================================================================                                                               |  51%  |                                                                                                                                       |=================================================================                                                              |  51%  |                                                                                                                                       |=================================================================                                                              |  52%  |                                                                                                                                       |==================================================================                                                             |  52%  |                                                                                                                                       |===================================================================                                                            |  52%  |                                                                                                                                       |===================================================================                                                            |  53%  |                                                                                                                                       |====================================================================                                                           |  53%  |                                                                                                                                       |====================================================================                                                           |  54%  |                                                                                                                                       |=====================================================================                                                          |  54%  |                                                                                                                                       |=====================================================================                                                          |  55%  |                                                                                                                                       |======================================================================                                                         |  55%  |                                                                                                                                       |======================================================================                                                         |  56%  |                                                                                                                                       |=======================================================================                                                        |  56%  |                                                                                                                                       |========================================================================                                                       |  56%  |                                                                                                                                       |========================================================================                                                       |  57%  |                                                                                                                                       |=========================================================================                                                      |  57%  |                                                                                                                                       |=========================================================================                                                      |  58%  |                                                                                                                                       |==========================================================================                                                     |  58%  |                                                                                                                                       |==========================================================================                                                     |  59%  |                                                                                                                                       |===========================================================================                                                    |  59%  |                                                                                                                                       |============================================================================                                                   |  59%  |                                                                                                                                       |============================================================================                                                   |  60%  |                                                                                                                                       |=============================================================================                                                  |  60%  |                                                                                                                                       |=============================================================================                                                  |  61%  |                                                                                                                                       |==============================================================================                                                 |  61%  |                                                                                                                                       |==============================================================================                                                 |  62%  |                                                                                                                                       |===============================================================================                                                |  62%  |                                                                                                                                       |===============================================================================                                                |  63%  |                                                                                                                                       |================================================================================                                               |  63%  |                                                                                                                                       |=================================================================================                                              |  63%  |                                                                                                                                       |=================================================================================                                              |  64%  |                                                                                                                                       |==================================================================================                                             |  64%  |                                                                                                                                       |==================================================================================                                             |  65%  |                                                                                                                                       |===================================================================================                                            |  65%  |                                                                                                                                       |===================================================================================                                            |  66%  |                                                                                                                                       |====================================================================================                                           |  66%  |                                                                                                                                       |====================================================================================                                           |  67%  |                                                                                                                                       |=====================================================================================                                          |  67%  |                                                                                                                                       |======================================================================================                                         |  67%  |                                                                                                                                       |======================================================================================                                         |  68%  |                                                                                                                                       |=======================================================================================                                        |  68%  |                                                                                                                                       |=======================================================================================                                        |  69%  |                                                                                                                                       |========================================================================================                                       |  69%  |                                                                                                                                       |========================================================================================                                       |  70%  |                                                                                                                                       |=========================================================================================                                      |  70%  |                                                                                                                                       |==========================================================================================                                     |  70%  |                                                                                                                                       |==========================================================================================                                     |  71%  |                                                                                                                                       |===========================================================================================                                    |  71%  |                                                                                                                                       |===========================================================================================                                    |  72%  |                                                                                                                                       |============================================================================================                                   |  72%  |                                                                                                                                       |============================================================================================                                   |  73%  |                                                                                                                                       |=============================================================================================                                  |  73%  |                                                                                                                                       |=============================================================================================                                  |  74%  |                                                                                                                                       |==============================================================================================                                 |  74%  |                                                                                                                                       |===============================================================================================                                |  74%  |                                                                                                                                       |===============================================================================================                                |  75%  |                                                                                                                                       |================================================================================================                               |  75%  |                                                                                                                                       |================================================================================================                               |  76%  |                                                                                                                                       |=================================================================================================                              |  76%  |                                                                                                                                       |=================================================================================================                              |  77%  |                                                                                                                                       |==================================================================================================                             |  77%  |                                                                                                                                       |==================================================================================================                             |  78%  |                                                                                                                                       |===================================================================================================                            |  78%  |                                                                                                                                       |====================================================================================================                           |  78%  |                                                                                                                                       |====================================================================================================                           |  79%  |                                                                                                                                       |=====================================================================================================                          |  79%  |                                                                                                                                       |=====================================================================================================                          |  80%  |                                                                                                                                       |======================================================================================================                         |  80%  |                                                                                                                                       |======================================================================================================                         |  81%  |                                                                                                                                       |=======================================================================================================                        |  81%  |                                                                                                                                       |========================================================================================================                       |  82%  |                                                                                                                                       |=========================================================================================================                      |  82%  |                                                                                                                                       |=========================================================================================================                      |  83%  |                                                                                                                                       |==========================================================================================================                     |  83%  |                                                                                                                                       |==========================================================================================================                     |  84%  |                                                                                                                                       |===========================================================================================================                    |  84%  |                                                                                                                                       |===========================================================================================================                    |  85%  |                                                                                                                                       |============================================================================================================                   |  85%  |                                                                                                                                       |=============================================================================================================                  |  85%  |                                                                                                                                       |=============================================================================================================                  |  86%  |                                                                                                                                       |==============================================================================================================                 |  86%  |                                                                                                                                       |==============================================================================================================                 |  87%  |                                                                                                                                       |===============================================================================================================                |  87%  |                                                                                                                                       |===============================================================================================================                |  88%  |                                                                                                                                       |================================================================================================================               |  88%  |                                                                                                                                       |================================================================================================================               |  89%  |                                                                                                                                       |=================================================================================================================              |  89%  |                                                                                                                                       |==================================================================================================================             |  89%  |                                                                                                                                       |==================================================================================================================             |  90%  |                                                                                                                                       |===================================================================================================================            |  90%  |                                                                                                                                       |===================================================================================================================            |  91%  |                                                                                                                                       |====================================================================================================================           |  91%  |                                                                                                                                       |====================================================================================================================           |  92%  |                                                                                                                                       |=====================================================================================================================          |  92%  |                                                                                                                                       |======================================================================================================================         |  93%  |                                                                                                                                       |=======================================================================================================================        |  93%  |                                                                                                                                       |=======================================================================================================================        |  94%  |                                                                                                                                       |========================================================================================================================       |  94%  |                                                                                                                                       |========================================================================================================================       |  95%  |                                                                                                                                       |=========================================================================================================================      |  95%  |                                                                                                                                       |=========================================================================================================================      |  96%  |                                                                                                                                       |==========================================================================================================================     |  96%  |                                                                                                                                       |===========================================================================================================================    |  96%  |                                                                                                                                       |===========================================================================================================================    |  97%  |                                                                                                                                       |============================================================================================================================   |  97%  |                                                                                                                                       |============================================================================================================================   |  98%  |                                                                                                                                       |=============================================================================================================================  |  98%  |                                                                                                                                       |=============================================================================================================================  |  99%  |                                                                                                                                       |============================================================================================================================== |  99%  |                                                                                                                                       |============================================================================================================================== | 100%  |                                                                                                                                       |===============================================================================================================================| 100%

Updated file paths to binaries in databases for Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_009/CalCurCEAS_2024_009_Filtered.rdata and Z:/drifting_recorder/2_Acoustic-Studies/2024_CalCurCEAS/CalCurCEAS_009/CalCurCEAS_2024_009_ch1.rdata

Create initial output Event Table CSV

To be used for manual scoring based on report figures.

# set up output data frame
evTable <- data.frame(drift = character(nEvents), id = character(nEvents), 
                      species = character(nEvents), numClicks = numeric(nEvents))
# populate with drift string and event names
evTable$drift <- paste0(params$mission, '_', params$drift)
evTable$id <- names(PAMpal::events(detsFilt))

# get all click data
allClks <- PAMpal::getClickData(detsFilt)
# get the number of clicks for each event
for (iEvent in c(1:nEventsFilt)){
  evTable$numClicks[iEvent] <- length(which(allClks$eventId == evTable$id[iEvent]))
}

# keep only rows/events with at least 200 clicks
evTable <- evTable[which(evTable$numClicks >199),]

# add column for keeping/removing based on median peak frequency
evTable$keep <- FALSE # set all to false, will mark keepers as TRUE in loop

# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets,
                                    paste0('eventTable_', params$mission, '_',
                                           params$drift, '_', Sys.Date(),'.csv')))

2223 events (files) in drift. 533 events have at least 200 clicks. Additional events may be removed if the median peak frequency of all high SNR clicks is less than 6 kHz. The final number of events can be found at the very end of the report.

Load reference spectra, if specified

Load the reference spectra for plotting, if set with refSpecList.

# refSpecList is specified in YAML params. Can be one or multiple species
# for single species specify as char string without quotations e.g., refSpecPc
# for multiple species, specify with call to R and c()
#     e.g., !r c('meanSpecGm', 'refSpecPc_LLHARP')

refSpecs <- NULL
if (!is.null(refSpecList)){
  refSpecs = list()
  for (rs in refSpecList){
    refSpecs[[rs]] = read.csv(file.path(path_to_refSpec, paste0(rs, '.csv')))
  }
}

Event summaries

Loop through each detection event (n = 533) create plots and a table of summary statistics for click and whistle detections. This process uses AcousticStudy objects that have detection data for each event, and also pulls information from the Pamguard binaries associated with each AcousticStudy.

Click plots (other than the SNR plot) only show clicks with SNRs >= 15 dB.

for (iEvent in c(1:nEventsFilt)){
  # iEvent = 6 # for testing
  # ("pagebreak \n")
  
  # extract this event UID string
  eventList <- PAMpal::events(detsFilt)
  eventUID <- names(eventList)[iEvent]
  
  ###### summarize clicks ######
  cl <- clickSummary(detsFilt, eventUID) 
  
  if ((cl$nClicks > 199) && median(cl$goodClicks$peak, na.rm = TRUE) >= 6){
    # keep this in evTable
    evTable$keep[evTable$id == eventUID] <- TRUE
    evTable$medPeakFrq[evTable$id == eventUID] <- median(cl$goodClicks$peak, 
                                                         na.rm = TRUE)
    
    # set header for this event and print time
    cat('\n\n#### Event ID:   ', names(eventList)[iEvent], '\n')
    cat('Time:   ', format(eventList[[eventUID]]@ancillary$grouping$start, 
                           '%Y-%m-%d %H:%M%Z'), ' to ', 
        format(eventList[[eventUID]]@ancillary$grouping$end, '%Y-%m-%d %H:%M%Z'), 
        '\n')
    
    cat('\nEvent contains', nrow(PAMpal::getClickData(dets[[eventUID]])), 
        'original clicks,', paste0('**', cl$nClicks), 'valid clicks** after',
        'filtering.\n')
    cat('\n')
    
    ###### summarize whistles ######
    # wl <- whistleSummary(detsFilt, eventUID)
    # 
    # cat('\nEvent contains', paste0('**', wl$nWhistles), 'whistles**.\n')
    # cat('\n')
    
    ###### click plots and table ######
    
    cat('\n##### Click plots and table\n')
    cat('\n SNR histogram includes all filtered clicks. Other plots contain only', 
        'clicks with SNR >= 15 dB', paste0('(**n = ', cl$nGoodClicks, ' clicks**)'),
        '.\n')
    cat('\n')
    
    
    # if any clicks...
    if (cl$nClicks > 0){
      # histogram of all clicks and SNR >= 15 dB cut off
      xMax <- max(c(15, ceiling(max(cl$snr)) + 2)) # whichever is bigger
      if (any(!is.na(cl$snr))){
        hist(cl$snr, breaks = seq(from = floor(min(cl$snr)), 
                                  to = xMax, by = 2), 
             main = 'Click SNR', sub = '(all filtered clicks)', xlab = 'SNR')
        abline(v = 15, lty = 2, lwd = 2, col = 'red4')
      }
      
    }
    
    # if sufficient good clicks...
    if (cl$nGoodClicks > 0) {
      # histogram of click durations - good clicks only
      subStr <- paste0('(high SNR clicks, n=', cl$nGoodClicks, ')')
      hist(cl$goodClicks$duration, 
           breaks = seq(from = 0, to = max(cl$goodClicks$duration) + 100, 
                        by = 100), main = 'Click duration', sub = subStr,
           xlab = expression(paste('duration [', mu, 's]')))
      abline(v = median(cl$goodClicks$duration), lty = 2, lwd = 2, col = 'black')
      legend('topright', legend = 'median', lty = 2, lwd = 2, col = 'black')
      
      
      cat('\n')
      cat('\n')
      
      
      # Calculate and plot Concatenated and Mean Spectrum for clicks w/ max SNR > 15dB
      # NB: JLKM uses more exaggerated SNR (>40 dB) for BWs bc actual spectra may
      # be noisy for single clicks
      # reducing wl can give more accurate noise floor but 'smoother' spectrum
      # increasing wl will give more exact spectrum but may exclude too many 
      # clicks based on SNR (noise measure will overlap with click output; noise
      # is just measured as same wl from start of binary snippet and binaries 
      # binary snippets are v short)
      # Trial and error - 256 works ok for LLHARP data = 1.28 ms
      # NB: JLKM uses 500 for beaked whales with samp rate 288k
      avgSpec <- PAMpal::calculateAverageSpectra(detsFilt, evNum = eventUID, wl = 256, 
                                         channel = params$channelNum, norm = TRUE,
                                         noise = TRUE, sort = TRUE, snr = 15, 
                                         plot = c(TRUE, FALSE))
      # concatenated spectrogram will get plotted within calculation
      
      # avg spectrum plots separately (bc adding stuff)
      if (!is.null(avgSpec)) {
        # Peak freq as calculated by calculateAvgerageSpectra -for subtitle
        peakFreq <- round(avgSpec$freq[which.max(avgSpec$avgSpec)]/1000, 2)
        
        plot(1, type = 'n', xlim = c(0, 100), ylim = c(min(avgSpec$avgSpec), 0), 
             xlab = 'Frequency (kHz)', ylab = 'Normalized Magnitude (dB)', 
             main = 'Average Spectrum', sub = paste0('Peak: ', peakFreq, 'kHz'))
        # add grid lines for frequency at 10 kHz intervals
        for (iline in ((0:20)*10)) {lines(c(iline,iline), c(-100,10), col="gray")}
        # add template spectra
        if (length(refSpecs) > 0){
          rsCols <- rsPalette[1:length(refSpecs)]
          for (rs in 1:length(refSpecs)){
            rsTmp <- refSpecList[rs]
            rsNorm <- refSpecs[[rsTmp]]
            rsMax <- max(rsNorm$dB)
            rsNorm$dBNorm <- rsNorm$dB - rsMax
            lines(rsNorm$frq, rsNorm$dBNorm, col = rsCols[rs], lwd = 2)
          }
        }
        
        # plot noise
        lines(avgSpec$freq/1000, avgSpec$avgNoise, lty = 3, lwd = 2)
        # plot avg spectrum
        lines(avgSpec$freq/1000, avgSpec$avgSpec, lty = 2, lwd = 3)
        # also plot median spectrum
        medSpec <- 20*log10(apply(avgSpec$allSpec, 1, function(y) {
          median(10^(y/20), na.rm = TRUE)}))
        medSpecNorm <- medSpec - max(medSpec, na.rm = TRUE)
        lines(avgSpec$freq/1000, medSpecNorm, lty = 1, lwd = 3)
        
        # add legend
        if (length(refSpecs) > 0){
          legend(x = 'topright', c(refSpecSp, 'Avg.', 'Med.', 'Noise'),
                 lty = c(rep(1, length(refSpecs)), 2, 1, 3),
                 lwd = c(rep(1, length(refSpecs)), 2, 3, 2),
                 col = c(rsCols, 'black', 'black', 'black'), cex = 0.8)
        } else if (length(refSpecs) == 0){
          legend(x = 'topright', c('Avg.', 'Med.', 'Noise'),
                 lty = c(2, 1, 3), lwd = c(2, 3, 2),
                 col = c('black', 'black', 'black'), cex = 0.8)
        }
      }
      
      
      # NB: JLKM BW approach has additional plots here:
      # IPI
      # Waveform of strongest click
      # Wigner plot
      # We are not including those here because not really useful for FKW, but if
      # interested in adding back in, see:
      #       https://github.com/jlkeating/PAMGuard_Event_Code
      
      
      cat('\n')
      cat('\n')
      
      
      # create median stats table for clicks with -15 dB TK noise cut off
      cat('\n\n Median statistics for', cl$nGoodClicks, 'high SNR clicks with', 
          'SNR >= 15 dB.')
      cat('\n')
      
      cat(knitr::kable(cl$mt, format = 'html', caption = '', align = 'l', 
                       row.names = FALSE) %>%
            kableExtra::kable_styling(bootstrap_options = c('basic', 'condensed'),
                          full_width = F))
      
    }  else { # no good clicks so no summary plots/table
      cat('\nNo clicks of sufficient SNR to plot or summarize.\n')
    }
    
    
    ###### whistle plots and table ######
    # 
    # cat('\n##### Whistle plots and table\n')
    # 
    # # if whistles present ...
    # if (wl$nWhistles > 0) {
    #   # create median stats table for all whistles
    #   # cat('\n\n Median statistics for', wl$nWhistles, 'whistles.')
    #   # cat('\n')
    #   
    #   # plot whistle contours
    #   # map the needed binary files
    #   binFiles <- dets@events[[eventUID]]@files$binaries
    #   wmFileIdx <- grep(pattern = '^.*WhistlesMoans_Whistle_and_Moan.*\\.pgdf$',
    #                     binFiles)
    #   wmFiles <- dets@events[[eventUID]]@files$binaries[wmFileIdx]
    #   
    #   # load them
    #   whBin <- loadMultiBinaries(wmFiles)
    #   # trim to just the event time
    #   whBinEv <- whBin[names(whBin) %in%
    #                      detsFilt[[eventUID]]$Whistle_and_Moan_Detector$UID]
    #   
    #   # #plot - ggplot version/functionized
    #   # pc <- plotContours(whBinEv)
    #   # # print(pc)
    #   # pc + ggtitle(eventUID)
    #   # 
    #   
    #   # get plot limits
    #   # xMax <- 0
    #   # yMax <- 0
    #   # for (wc in 1:length(names(whBinEv))){
    #   #   df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #   #                    freq = whBinEv[[wc]]$freq/1000)
    #   #   xMaxTmp <- max(df$time)
    #   #   yMaxTmp <- max(df$freq)
    #   #   if (xMaxTmp > xMax){xMax <- xMaxTmp}
    #   #   if (yMaxTmp > yMax){yMax <- yMaxTmp}
    #   # }
    #   # or use standard max lims
    #   xMax <- 1.5
    #   yMax <- 20
    #   
    #   # plot each line
    #   plot(1, type = 'n', xlim = c(0, round(xMax,2)), ylim = c(0, round(yMax,-1)), 
    #        xlab = 'Time (s)', ylab = 'Frequency (kHz)', 
    #        main = 'Whistle Contours')
    #   # add grid lines for frequency at 0.125 s and 5 kHz intervals
    #   for (iline in (seq(0,2,0.125))) {lines(c(iline,iline), c(-10,60),
    #                                          col="lightgray")}
    #   for (iline in (seq(0,50,5))) {lines(c(-0.5,2.5), c(iline,iline),
    #                                       col="lightgray")}
    #   # loop through each contour
    #   for (wc in 1:length(names(whBinEv))){
    #     df <- data.frame(time = whBinEv[[wc]]$time - whBinEv[[wc]]$time[1],
    #                      freq = whBinEv[[wc]]$freq/1000)
    #     lines(df$time, df$freq, col = rgb(0,0,0,0.4))
    #   }
    #   
    #   # plot histogram of median frequency
    #   hist(wl$wh$freqMedian/1000, 
    #        breaks = seq(0, ceiling(max(wl$wh$freqMedian/1000)) + 1, 1),
    #        main = 'Histogram of whistle median frequency', 
    #        xlab = 'Median frequency (kHz)')
    #   
    #   cat('\n')
    #   cat('\n')
    #   
    #   cat('Median statistics for n = ', wl$nWhistles, 'whistles.\n')
    #   # create median stats table for all whistles
    #   cat(knitr::kable(wl$mt, format = 'html', caption = '', align = 'l', 
    #                    row.names = FALSE) %>%
    #         kable_styling(bootstrap_options = c('basic', 'condensed'),
    #                       full_width = F))
    #   
    # } else {
    #   cat('\nNo whistles present.\n')
    # }
    
    cat('\n')
    cat('\n\n --- \n\n')
    cat('\n')
  }# num clicks/peak freq check 
} # loop

Event ID: 7517.240915024801.wav

Time: 2024-09-15 02:48UTC to 2024-09-15 02:54UTC

Event contains 406 original clicks, 203 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 159 clicks) .

Median statistics for 159 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.55
Median 10dB Center Frequency [kHz] 6.49
Median 3dB Bandwidth [kHz] (lower-upper) 1.03 (6.02 - 7.24)
Median 10dB Bandwidth [kHz] (lower-upper) 2.45 (4.55 - 8.33)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240915032401.wav

Time: 2024-09-15 03:24UTC to 2024-09-15 03:30UTC

Event contains 498 original clicks, 249 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 142 clicks) .

Median statistics for 142 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.8
Median 10dB Center Frequency [kHz] 6.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (5.28 - 6.6)
Median 10dB Bandwidth [kHz] (lower-upper) 2.84 (3.88 - 8.09)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240915053601.wav

Time: 2024-09-15 05:36UTC to 2024-09-15 05:42UTC

Event contains 718 original clicks, 359 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 282 clicks) .

Median statistics for 282 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.9
Median 10dB Center Frequency [kHz] 6.78
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (6.05 - 7.69)
Median 10dB Bandwidth [kHz] (lower-upper) 3.55 (4.51 - 8.99)
Median duration [μs] (25-75 percentile) 38 (0 - 264)

Event ID: 7517.240915054201.wav

Time: 2024-09-15 05:42UTC to 2024-09-15 05:48UTC

Event contains 712 original clicks, 356 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 258 clicks) .

Median statistics for 258 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 5.97
Median 10dB Center Frequency [kHz] 6.38
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (5.12 - 6.48)
Median 10dB Bandwidth [kHz] (lower-upper) 3.21 (4.07 - 8.47)
Median duration [μs] (25-75 percentile) 0 (0 - 179)

Event ID: 7517.240915060001.wav

Time: 2024-09-15 06:00UTC to 2024-09-15 06:06UTC

Event contains 520 original clicks, 260 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .

Median statistics for 210 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.06
Median 10dB Center Frequency [kHz] 6.47
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (5.12 - 6.85)
Median 10dB Bandwidth [kHz] (lower-upper) 4.45 (3.62 - 9.33)
Median duration [μs] (25-75 percentile) 17 (0 - 169)

Event ID: 7517.240915081802.wav

Time: 2024-09-15 08:18UTC to 2024-09-15 08:24UTC

Event contains 974 original clicks, 487 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 375 clicks) .

Median statistics for 375 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.4
Median 3dB Center Frequency [kHz] 10.4
Median 10dB Center Frequency [kHz] 10.6
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (9.73 - 11)
Median 10dB Bandwidth [kHz] (lower-upper) 4.1 (8.86 - 12.7)
Median duration [μs] (25-75 percentile) 0 (0 - 42)

Event ID: 7517.240915082402.wav

Time: 2024-09-15 08:24UTC to 2024-09-15 08:30UTC

Event contains 1076 original clicks, 538 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 429 clicks) .

Median statistics for 429 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 18.8
Median 3dB Center Frequency [kHz] 17.9
Median 10dB Center Frequency [kHz] 18.3
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (17.1 - 18.8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.69 (15.6 - 20.8)
Median duration [μs] (25-75 percentile) 0 (0 - 31)

Event ID: 7517.240915083002.wav

Time: 2024-09-15 08:30UTC to 2024-09-15 08:36UTC

Event contains 562 original clicks, 281 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 214 clicks) .

Median statistics for 214 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 18.4
Median 3dB Center Frequency [kHz] 12.1
Median 10dB Center Frequency [kHz] 12.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (11.6 - 12.7)
Median 10dB Bandwidth [kHz] (lower-upper) 4.11 (10.8 - 14.8)
Median duration [μs] (25-75 percentile) 13 (0 - 100)

Event ID: 7517.240915083602.wav

Time: 2024-09-15 08:36UTC to 2024-09-15 08:42UTC

Event contains 684 original clicks, 342 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 260 clicks) .

Median statistics for 260 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12.4
Median 3dB Center Frequency [kHz] 10.8
Median 10dB Center Frequency [kHz] 11.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (9.97 - 11.5)
Median 10dB Bandwidth [kHz] (lower-upper) 4.37 (9.05 - 13.6)
Median duration [μs] (25-75 percentile) 50 (13 - 105)

Event ID: 7517.240915084202.wav

Time: 2024-09-15 08:42UTC to 2024-09-15 08:48UTC

Event contains 678 original clicks, 339 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 244 clicks) .

Median statistics for 244 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 12
Median 3dB Center Frequency [kHz] 11.7
Median 10dB Center Frequency [kHz] 12.3
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 ( 11 - 12.5)
Median 10dB Bandwidth [kHz] (lower-upper) 4.77 (10.2 - 15.3)
Median duration [μs] (25-75 percentile) 66 (15 - 128)

Event ID: 7517.240915090602.wav

Time: 2024-09-15 09:06UTC to 2024-09-15 09:12UTC

Event contains 474 original clicks, 237 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 142 clicks) .

Median statistics for 142 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 10.8
Median 3dB Center Frequency [kHz] 8.92
Median 10dB Center Frequency [kHz] 8.96
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (8.22 - 9.59)
Median 10dB Bandwidth [kHz] (lower-upper) 3.14 (7.36 - 10.2)
Median duration [μs] (25-75 percentile) 0 (0 - 20)

Event ID: 7517.240917190602.wav

Time: 2024-09-17 19:06UTC to 2024-09-17 19:12UTC

Event contains 530 original clicks, 265 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .

Median statistics for 220 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 9.2
Median 3dB Center Frequency [kHz] 8.15
Median 10dB Center Frequency [kHz] 7.98
Median 3dB Bandwidth [kHz] (lower-upper) 1.72 (7.47 - 8.8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.16 (5.98 - 10.2)
Median duration [μs] (25-75 percentile) 220 (100 - 495)

Event ID: 7517.240918030002.wav

Time: 2024-09-18 03:00UTC to 2024-09-18 03:06UTC

Event contains 660 original clicks, 330 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 295 clicks) .

Median statistics for 295 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.2
Median 10dB Center Frequency [kHz] 6.24
Median 3dB Bandwidth [kHz] (lower-upper) 0.881 (5.58 - 6.65)
Median 10dB Bandwidth [kHz] (lower-upper) 3.06 (3.95 - 8.49)
Median duration [μs] (25-75 percentile) 0 (0 - 269)

Event ID: 7517.240918030602.wav

Time: 2024-09-18 03:06UTC to 2024-09-18 03:12UTC

Event contains 816 original clicks, 408 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 363 clicks) .

Median statistics for 363 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.27
Median 10dB Center Frequency [kHz] 6.94
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (6.74 - 7.79)
Median 10dB Bandwidth [kHz] (lower-upper) 3.05 (5.03 - 8.75)
Median duration [μs] (25-75 percentile) 143 (0 - 1000)

Event ID: 7517.240918032402.wav

Time: 2024-09-18 03:24UTC to 2024-09-18 03:30UTC

Event contains 952 original clicks, 476 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 417 clicks) .

Median statistics for 417 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.03
Median 10dB Center Frequency [kHz] 6.89
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (6.36 - 7.67)
Median 10dB Bandwidth [kHz] (lower-upper) 2.88 ( 5.3 - 8.54)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240918033002.wav

Time: 2024-09-18 03:30UTC to 2024-09-18 03:36UTC

Event contains 1254 original clicks, 627 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 582 clicks) .

Median statistics for 582 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.25
Median 10dB Center Frequency [kHz] 7.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 (6.44 - 7.89)
Median 10dB Bandwidth [kHz] (lower-upper) 4.07 (4.68 - 9.46)
Median duration [μs] (25-75 percentile) 21 (0 - 1000)

Event ID: 7517.240918033602.wav

Time: 2024-09-18 03:36UTC to 2024-09-18 03:42UTC

Event contains 1202 original clicks, 601 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 549 clicks) .

Median statistics for 549 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.61
Median 10dB Center Frequency [kHz] 6.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.25 ( 5.9 - 7.3)
Median 10dB Bandwidth [kHz] (lower-upper) 4.07 (3.66 - 8.73)
Median duration [μs] (25-75 percentile) 73 (0 - 1000)

Event ID: 7517.240918034202.wav

Time: 2024-09-18 03:42UTC to 2024-09-18 03:48UTC

Event contains 1248 original clicks, 624 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 595 clicks) .

Median statistics for 595 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.78
Median 10dB Center Frequency [kHz] 7.67
Median 3dB Bandwidth [kHz] (lower-upper) 1.49 (6.93 - 8.54)
Median 10dB Bandwidth [kHz] (lower-upper) 4.43 (5.31 - 10.1)
Median duration [μs] (25-75 percentile) 375 (100 - 1000)

Event ID: 7517.240918034802.wav

Time: 2024-09-18 03:48UTC to 2024-09-18 03:54UTC

Event contains 1222 original clicks, 611 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 580 clicks) .

Median statistics for 580 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.28
Median 10dB Center Frequency [kHz] 8.16
Median 3dB Bandwidth [kHz] (lower-upper) 2.12 (7.17 - 9.34)
Median 10dB Bandwidth [kHz] (lower-upper) 6.03 (5.43 - 11)
Median duration [μs] (25-75 percentile) 305 (120 - 1000)

Event ID: 7517.240918035402.wav

Time: 2024-09-18 03:54UTC to 2024-09-18 04:00UTC

Event contains 1262 original clicks, 631 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 590 clicks) .

Median statistics for 590 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.45
Median 10dB Center Frequency [kHz] 7.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (6.66 - 8.04)
Median 10dB Bandwidth [kHz] (lower-upper) 4.13 (4.19 - 9.39)
Median duration [μs] (25-75 percentile) 116 (0 - 1000)

Event ID: 7517.240918040002.wav

Time: 2024-09-18 04:00UTC to 2024-09-18 04:06UTC

Event contains 1136 original clicks, 568 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 520 clicks) .

Median statistics for 520 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.63
Median 10dB Center Frequency [kHz] 7.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.58 (6.71 - 8.6)
Median 10dB Bandwidth [kHz] (lower-upper) 5.57 ( 4.1 - 10.3)
Median duration [μs] (25-75 percentile) 189 (43 - 1000)

Event ID: 7517.240918041802.wav

Time: 2024-09-18 04:18UTC to 2024-09-18 04:24UTC

Event contains 918 original clicks, 459 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 402 clicks) .

Median statistics for 402 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.27
Median 10dB Center Frequency [kHz] 7.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (6.63 - 7.89)
Median 10dB Bandwidth [kHz] (lower-upper) 3.32 (5.26 - 8.94)
Median duration [μs] (25-75 percentile) 0 (0 - 168)

Event ID: 7517.240918042402.wav

Time: 2024-09-18 04:24UTC to 2024-09-18 04:30UTC

Event contains 1268 original clicks, 634 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 591 clicks) .

Median statistics for 591 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.92
Median 10dB Center Frequency [kHz] 8.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (7.27 - 8.47)
Median 10dB Bandwidth [kHz] (lower-upper) 3.79 (6.02 - 10.1)
Median duration [μs] (25-75 percentile) 123 (0 - 1000)

Event ID: 7517.240918043002.wav

Time: 2024-09-18 04:30UTC to 2024-09-18 04:36UTC

Event contains 2170 original clicks, 1085 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 887 clicks) .

Median statistics for 887 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.17
Median 10dB Center Frequency [kHz] 8.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (7.58 - 8.78)
Median 10dB Bandwidth [kHz] (lower-upper) 3.48 (6.43 - 10.2)
Median duration [μs] (25-75 percentile) 36 (0 - 1000)

Event ID: 7517.240918043602.wav

Time: 2024-09-18 04:36UTC to 2024-09-18 04:42UTC

Event contains 2528 original clicks, 1264 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1114 clicks) .

Median statistics for 1114 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.88
Median 10dB Center Frequency [kHz] 7.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (7.26 - 8.48)
Median 10dB Bandwidth [kHz] (lower-upper) 3.34 (5.96 - 9.69)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7517.240918044202.wav

Time: 2024-09-18 04:42UTC to 2024-09-18 04:48UTC

Event contains 2386 original clicks, 1193 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 1004 clicks) .

Median statistics for 1004 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.99
Median 10dB Center Frequency [kHz] 7.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 ( 7.3 - 8.55)
Median 10dB Bandwidth [kHz] (lower-upper) 3.3 (6.06 - 9.74)
Median duration [μs] (25-75 percentile) 0 (0 - 485)

Event ID: 7517.240918044802.wav

Time: 2024-09-18 04:48UTC to 2024-09-18 04:54UTC

Event contains 1680 original clicks, 840 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 778 clicks) .

Median statistics for 778 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.8
Median 3dB Center Frequency [kHz] 8.67
Median 10dB Center Frequency [kHz] 8.53
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (7.88 - 9.35)
Median 10dB Bandwidth [kHz] (lower-upper) 3.72 (6.39 - 10.6)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7517.240918045402.wav

Time: 2024-09-18 04:54UTC to 2024-09-18 05:00UTC

Event contains 924 original clicks, 462 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 409 clicks) .

Median statistics for 409 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.91
Median 10dB Center Frequency [kHz] 7.85
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 ( 7.3 - 8.57)
Median 10dB Bandwidth [kHz] (lower-upper) 3.24 (6.12 - 9.64)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240918050602.wav

Time: 2024-09-18 05:06UTC to 2024-09-18 05:12UTC

Event contains 746 original clicks, 373 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 323 clicks) .

Median statistics for 323 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.74
Median 10dB Center Frequency [kHz] 6.41
Median 3dB Bandwidth [kHz] (lower-upper) 1.58 (5.65 - 7.78)
Median 10dB Bandwidth [kHz] (lower-upper) 4.42 (3.74 - 8.74)
Median duration [μs] (25-75 percentile) 295 (0 - 1223)

Event ID: 7517.240918051202.wav

Time: 2024-09-18 05:12UTC to 2024-09-18 05:18UTC

Event contains 1888 original clicks, 944 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 812 clicks) .

Median statistics for 812 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8.08
Median 10dB Center Frequency [kHz] 8.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (7.17 - 9.03)
Median 10dB Bandwidth [kHz] (lower-upper) 4.11 (5.84 - 10.3)
Median duration [μs] (25-75 percentile) 267 (0 - 1513)

Event ID: 7517.240918051802.wav

Time: 2024-09-18 05:18UTC to 2024-09-18 05:24UTC

Event contains 1738 original clicks, 869 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 767 clicks) .

Median statistics for 767 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.2
Median 10dB Center Frequency [kHz] 8.17
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (7.31 - 9.08)
Median 10dB Bandwidth [kHz] (lower-upper) 3.82 (5.76 - 10.2)
Median duration [μs] (25-75 percentile) 10 (0 - 1160)

Event ID: 7517.240918052402.wav

Time: 2024-09-18 05:24UTC to 2024-09-18 05:30UTC

Event contains 1682 original clicks, 841 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 653 clicks) .

Median statistics for 653 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.82
Median 10dB Center Frequency [kHz] 6.78
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (5.57 - 7.53)
Median 10dB Bandwidth [kHz] (lower-upper) 4.27 (3.73 - 9.59)
Median duration [μs] (25-75 percentile) 865 (36 - 2234)

Event ID: 7517.240918053002.wav

Time: 2024-09-18 05:30UTC to 2024-09-18 05:36UTC

Event contains 1572 original clicks, 786 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 695 clicks) .

Median statistics for 695 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.27
Median 10dB Center Frequency [kHz] 8.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (7.56 - 8.87)
Median 10dB Bandwidth [kHz] (lower-upper) 4.04 (5.92 - 10.6)
Median duration [μs] (25-75 percentile) 524 (0 - 1448)

Event ID: 7517.240918053602.wav

Time: 2024-09-18 05:36UTC to 2024-09-18 05:42UTC

Event contains 1802 original clicks, 901 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 673 clicks) .

Median statistics for 673 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.06
Median 10dB Center Frequency [kHz] 8.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 ( 7.2 - 8.84)
Median 10dB Bandwidth [kHz] (lower-upper) 4.13 (5.42 - 10.4)
Median duration [μs] (25-75 percentile) 167 (0 - 1238)

Event ID: 7517.240918054202.wav

Time: 2024-09-18 05:42UTC to 2024-09-18 05:48UTC

Event contains 1180 original clicks, 590 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 510 clicks) .

Median statistics for 510 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.97
Median 10dB Center Frequency [kHz] 7.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (6.18 - 7.57)
Median 10dB Bandwidth [kHz] (lower-upper) 4.87 (4.01 - 9.65)
Median duration [μs] (25-75 percentile) 510 (0 - 1328)

Event ID: 7517.240918054802.wav

Time: 2024-09-18 05:48UTC to 2024-09-18 05:54UTC

Event contains 1406 original clicks, 703 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 620 clicks) .

Median statistics for 620 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.2
Median 10dB Center Frequency [kHz] 7.55
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (6.58 - 7.78)
Median 10dB Bandwidth [kHz] (lower-upper) 3.58 (5.62 - 9.32)
Median duration [μs] (25-75 percentile) 5.2 (0 - 362)

Event ID: 7517.240918060602.wav

Time: 2024-09-18 06:06UTC to 2024-09-18 06:12UTC

Event contains 958 original clicks, 479 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 430 clicks) .

Median statistics for 430 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.47
Median 10dB Center Frequency [kHz] 7.55
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (6.46 - 8.19)
Median 10dB Bandwidth [kHz] (lower-upper) 4.33 (4.41 - 9.75)
Median duration [μs] (25-75 percentile) 348 (29 - 1000)

Event ID: 7517.240918061202.wav

Time: 2024-09-18 06:12UTC to 2024-09-18 06:18UTC

Event contains 1306 original clicks, 653 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 541 clicks) .

Median statistics for 541 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.89
Median 10dB Center Frequency [kHz] 6.38
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (4.94 - 6.88)
Median 10dB Bandwidth [kHz] (lower-upper) 3.78 (3.94 - 8.74)
Median duration [μs] (25-75 percentile) 334 (0 - 1045)

Event ID: 7517.240918063002.wav

Time: 2024-09-18 06:30UTC to 2024-09-18 06:36UTC

Event contains 792 original clicks, 396 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 330 clicks) .

Median statistics for 330 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.3
Median 10dB Center Frequency [kHz] 6.29
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (5.58 - 6.8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.58 (4.34 - 8.46)
Median duration [μs] (25-75 percentile) 387 (100 - 1203)

Event ID: 7517.240918063602.wav

Time: 2024-09-18 06:36UTC to 2024-09-18 06:42UTC

Event contains 534 original clicks, 267 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 208 clicks) .

Median statistics for 208 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.57
Median 10dB Center Frequency [kHz] 5.84
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (5.02 - 6.17)
Median 10dB Bandwidth [kHz] (lower-upper) 2.79 (4.25 - 7.63)
Median duration [μs] (25-75 percentile) 403 (126 - 1000)

Event ID: 7517.240918094802.wav

Time: 2024-09-18 09:48UTC to 2024-09-18 09:54UTC

Event contains 968 original clicks, 484 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 209 clicks) .

Median statistics for 209 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.92
Median 10dB Center Frequency [kHz] 5.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (5.36 - 6.53)
Median 10dB Bandwidth [kHz] (lower-upper) 2.77 (4.56 - 7.24)
Median duration [μs] (25-75 percentile) 65 (0 - 203)

Event ID: 7517.240918113002.wav

Time: 2024-09-18 11:30UTC to 2024-09-18 11:36UTC

Event contains 418 original clicks, 209 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 118 clicks) .

Median statistics for 118 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.26
Median 10dB Center Frequency [kHz] 6.37
Median 3dB Bandwidth [kHz] (lower-upper) 1.37 ( 5.5 - 6.92)
Median 10dB Bandwidth [kHz] (lower-upper) 4.98 (3.84 - 8.86)
Median duration [μs] (25-75 percentile) 6.5 (0 - 49)

Event ID: 7517.240918113602.wav

Time: 2024-09-18 11:36UTC to 2024-09-18 11:42UTC

Event contains 490 original clicks, 245 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 152 clicks) .

Median statistics for 152 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.25
Median 10dB Center Frequency [kHz] 6.56
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (5.57 - 6.93)
Median 10dB Bandwidth [kHz] (lower-upper) 5.17 (3.87 - 9.02)
Median duration [μs] (25-75 percentile) 0 (0 - 44)

Event ID: 7517.240919065403.wav

Time: 2024-09-19 06:54UTC to 2024-09-19 07:00UTC

Event contains 400 original clicks, 200 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 100 clicks) .

Median statistics for 100 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.02
Median 10dB Center Frequency [kHz] 7.06
Median 3dB Bandwidth [kHz] (lower-upper) 1 (6.47 - 7.49)
Median 10dB Bandwidth [kHz] (lower-upper) 2.87 (5.45 - 8.63)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240919072403.wav

Time: 2024-09-19 07:24UTC to 2024-09-19 07:30UTC

Event contains 544 original clicks, 272 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 155 clicks) .

Median statistics for 155 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.34
Median 10dB Center Frequency [kHz] 6.35
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (5.66 - 7.02)
Median 10dB Bandwidth [kHz] (lower-upper) 3.47 ( 4.4 - 8.44)
Median duration [μs] (25-75 percentile) 0 (0 - 16)

Event ID: 7517.240919073003.wav

Time: 2024-09-19 07:30UTC to 2024-09-19 07:36UTC

Event contains 618 original clicks, 309 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 180 clicks) .

Median statistics for 180 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.44
Median 10dB Center Frequency [kHz] 6.47
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (5.85 - 7.12)
Median 10dB Bandwidth [kHz] (lower-upper) 3 (4.61 - 8.42)
Median duration [μs] (25-75 percentile) 0 (0 - 47)

Event ID: 7517.240919074203.wav

Time: 2024-09-19 07:42UTC to 2024-09-19 07:48UTC

Event contains 476 original clicks, 238 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 177 clicks) .

Median statistics for 177 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.5
Median 10dB Center Frequency [kHz] 7.18
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (6.77 - 8.15)
Median 10dB Bandwidth [kHz] (lower-upper) 2.96 (5.68 - 8.87)
Median duration [μs] (25-75 percentile) 0 (0 - 44)

Event ID: 7517.240919074803.wav

Time: 2024-09-19 07:48UTC to 2024-09-19 07:54UTC

Event contains 550 original clicks, 275 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 210 clicks) .

Median statistics for 210 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.3
Median 10dB Center Frequency [kHz] 7.21
Median 3dB Bandwidth [kHz] (lower-upper) 0.865 (6.73 - 7.77)
Median 10dB Bandwidth [kHz] (lower-upper) 2.67 (5.54 - 8.68)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240919083003.wav

Time: 2024-09-19 08:30UTC to 2024-09-19 08:36UTC

Event contains 400 original clicks, 200 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 155 clicks) .

Median statistics for 155 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7
Median 10dB Center Frequency [kHz] 7.08
Median 3dB Bandwidth [kHz] (lower-upper) 0.963 (6.57 - 7.48)
Median 10dB Bandwidth [kHz] (lower-upper) 2.84 (5.55 - 8.87)
Median duration [μs] (25-75 percentile) 0 (0 - 1)

Event ID: 7517.240919083603.wav

Time: 2024-09-19 08:36UTC to 2024-09-19 08:42UTC

Event contains 672 original clicks, 336 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 255 clicks) .

Median statistics for 255 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 6.87
Median 3dB Bandwidth [kHz] (lower-upper) 0.945 ( 6.6 - 7.5)
Median 10dB Bandwidth [kHz] (lower-upper) 2.56 (4.97 - 8.67)
Median duration [μs] (25-75 percentile) 0 (0 - 47)

Event ID: 7517.240919084203.wav

Time: 2024-09-19 08:42UTC to 2024-09-19 08:48UTC

Event contains 488 original clicks, 244 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 168 clicks) .

Median statistics for 168 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.59
Median 10dB Center Frequency [kHz] 7.54
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (6.94 - 8.08)
Median 10dB Bandwidth [kHz] (lower-upper) 3.1 (5.87 - 9.22)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240919091803.wav

Time: 2024-09-19 09:18UTC to 2024-09-19 09:24UTC

Event contains 464 original clicks, 232 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 209 clicks) .

Median statistics for 209 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.51
Median 10dB Center Frequency [kHz] 6.57
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (5.97 - 7.17)
Median 10dB Bandwidth [kHz] (lower-upper) 3.7 (4.47 - 8.54)
Median duration [μs] (25-75 percentile) 16 (0 - 209)

Event ID: 7517.240919092403.wav

Time: 2024-09-19 09:24UTC to 2024-09-19 09:30UTC

Event contains 1206 original clicks, 603 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 524 clicks) .

Median statistics for 524 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.02
Median 10dB Center Frequency [kHz] 6.89
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (6.21 - 7.8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.42 (4.52 - 9.21)
Median duration [μs] (25-75 percentile) 63 (0 - 353)

Event ID: 7517.240919093003.wav

Time: 2024-09-19 09:30UTC to 2024-09-19 09:36UTC

Event contains 1000 original clicks, 500 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 456 clicks) .

Median statistics for 456 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.72
Median 10dB Center Frequency [kHz] 6.7
Median 3dB Bandwidth [kHz] (lower-upper) 1.35 (5.93 - 7.49)
Median 10dB Bandwidth [kHz] (lower-upper) 4.11 (4.42 - 8.76)
Median duration [μs] (25-75 percentile) 7.8 (0 - 167)

Event ID: 7517.240919093603.wav

Time: 2024-09-19 09:36UTC to 2024-09-19 09:42UTC

Event contains 478 original clicks, 239 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 198 clicks) .

Median statistics for 198 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.55
Median 10dB Center Frequency [kHz] 6.61
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (5.84 - 7.33)
Median 10dB Bandwidth [kHz] (lower-upper) 3.88 (4.41 - 8.65)
Median duration [μs] (25-75 percentile) 27 (0 - 161)

Event ID: 7517.240919094803.wav

Time: 2024-09-19 09:48UTC to 2024-09-19 09:54UTC

Event contains 530 original clicks, 265 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 231 clicks) .

Median statistics for 231 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.45
Median 10dB Center Frequency [kHz] 6.59
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (5.78 - 6.99)
Median 10dB Bandwidth [kHz] (lower-upper) 3.19 (4.34 - 8.11)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240919095403.wav

Time: 2024-09-19 09:54UTC to 2024-09-19 10:00UTC

Event contains 1816 original clicks, 908 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 801 clicks) .

Median statistics for 801 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.61
Median 10dB Center Frequency [kHz] 6.81
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (5.97 - 7.35)
Median 10dB Bandwidth [kHz] (lower-upper) 3.88 (4.38 - 8.96)
Median duration [μs] (25-75 percentile) 115 (0 - 480)

Event ID: 7517.240919100003.wav

Time: 2024-09-19 10:00UTC to 2024-09-19 10:06UTC

Event contains 1804 original clicks, 902 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 795 clicks) .

Median statistics for 795 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.32
Median 10dB Center Frequency [kHz] 7.08
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (6.62 - 7.99)
Median 10dB Bandwidth [kHz] (lower-upper) 3.91 (4.79 - 9.44)
Median duration [μs] (25-75 percentile) 162 (0 - 1000)

Event ID: 7517.240919100603.wav

Time: 2024-09-19 10:06UTC to 2024-09-19 10:12UTC

Event contains 1802 original clicks, 901 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 815 clicks) .

Median statistics for 815 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.05
Median 10dB Center Frequency [kHz] 6.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.37 (6.15 - 7.82)
Median 10dB Bandwidth [kHz] (lower-upper) 4.51 (4.39 - 9.19)
Median duration [μs] (25-75 percentile) 70 (0 - 1000)

Event ID: 7517.240919101203.wav

Time: 2024-09-19 10:12UTC to 2024-09-19 10:18UTC

Event contains 1574 original clicks, 787 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 693 clicks) .

Median statistics for 693 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.92
Median 10dB Center Frequency [kHz] 6.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 ( 6 - 7.83)
Median 10dB Bandwidth [kHz] (lower-upper) 4.44 (4.54 - 9.15)
Median duration [μs] (25-75 percentile) 130 (0 - 1000)

Event ID: 7517.240919101803.wav

Time: 2024-09-19 10:18UTC to 2024-09-19 10:24UTC

Event contains 1914 original clicks, 957 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 781 clicks) .

Median statistics for 781 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7.02
Median 10dB Center Frequency [kHz] 7.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (6.24 - 7.87)
Median 10dB Bandwidth [kHz] (lower-upper) 4.29 (4.59 - 9)
Median duration [μs] (25-75 percentile) 60 (0 - 1000)

Event ID: 7517.240919102403.wav

Time: 2024-09-19 10:24UTC to 2024-09-19 10:30UTC

Event contains 1490 original clicks, 745 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 640 clicks) .

Median statistics for 640 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.64
Median 10dB Center Frequency [kHz] 6.85
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (5.86 - 7.35)
Median 10dB Bandwidth [kHz] (lower-upper) 3.86 ( 4.4 - 8.82)
Median duration [μs] (25-75 percentile) 91 (0 - 1004)

Event ID: 7517.240919105403.wav

Time: 2024-09-19 10:54UTC to 2024-09-19 11:00UTC

Event contains 660 original clicks, 330 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 173 clicks) .

Median statistics for 173 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.93
Median 10dB Center Frequency [kHz] 6.27
Median 3dB Bandwidth [kHz] (lower-upper) 1.39 (5.04 - 6.8)
Median 10dB Bandwidth [kHz] (lower-upper) 4.99 (3.79 - 8.86)
Median duration [μs] (25-75 percentile) 2.6 (0 - 42)

Event ID: 7517.240919110603.wav

Time: 2024-09-19 11:06UTC to 2024-09-19 11:12UTC

Event contains 642 original clicks, 321 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 165 clicks) .

Median statistics for 165 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.84
Median 10dB Center Frequency [kHz] 6.33
Median 3dB Bandwidth [kHz] (lower-upper) 1.38 (4.91 - 6.79)
Median 10dB Bandwidth [kHz] (lower-upper) 5 ( 3.8 - 8.86)
Median duration [μs] (25-75 percentile) 0 (0 - 34)

Event ID: 7517.240919114203.wav

Time: 2024-09-19 11:42UTC to 2024-09-19 11:48UTC

Event contains 536 original clicks, 268 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 129 clicks) .

Median statistics for 129 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.84
Median 10dB Center Frequency [kHz] 6.31
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (4.94 - 6.72)
Median 10dB Bandwidth [kHz] (lower-upper) 5.08 ( 3.8 - 8.89)
Median duration [μs] (25-75 percentile) 0 (0 - 31)

Event ID: 7517.240919121203.wav

Time: 2024-09-19 12:12UTC to 2024-09-19 12:18UTC

Event contains 844 original clicks, 422 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 227 clicks) .

Median statistics for 227 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.85
Median 10dB Center Frequency [kHz] 6.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (4.95 - 6.81)
Median 10dB Bandwidth [kHz] (lower-upper) 4.95 (3.82 - 8.87)
Median duration [μs] (25-75 percentile) 7.8 (0 - 42)

Event ID: 7517.240919124203.wav

Time: 2024-09-19 12:42UTC to 2024-09-19 12:48UTC

Event contains 1188 original clicks, 594 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 313 clicks) .

Median statistics for 313 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.91
Median 10dB Center Frequency [kHz] 6.4
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (5.01 - 6.86)
Median 10dB Bandwidth [kHz] (lower-upper) 5.21 (3.78 - 8.99)
Median duration [μs] (25-75 percentile) 10 (0 - 47)

Event ID: 7517.240919131203.wav

Time: 2024-09-19 13:12UTC to 2024-09-19 13:18UTC

Event contains 1250 original clicks, 625 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 358 clicks) .

Median statistics for 358 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.89
Median 10dB Center Frequency [kHz] 6.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (4.98 - 6.84)
Median 10dB Bandwidth [kHz] (lower-upper) 5.21 (3.74 - 8.97)
Median duration [μs] (25-75 percentile) 31 (0 - 103)

Event ID: 7517.240919131803.wav

Time: 2024-09-19 13:18UTC to 2024-09-19 13:24UTC

Event contains 946 original clicks, 473 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .

Median statistics for 236 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.84
Median 10dB Center Frequency [kHz] 6.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (4.91 - 6.78)
Median 10dB Bandwidth [kHz] (lower-upper) 5.1 (3.75 - 8.89)
Median duration [μs] (25-75 percentile) 10 (0 - 100)

Event ID: 7517.240919133603.wav

Time: 2024-09-19 13:36UTC to 2024-09-19 13:42UTC

Event contains 1000 original clicks, 500 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 256 clicks) .

Median statistics for 256 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.06
Median 10dB Center Frequency [kHz] 6.41
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (5.13 - 6.89)
Median 10dB Bandwidth [kHz] (lower-upper) 5.3 (3.76 - 9.02)
Median duration [μs] (25-75 percentile) 18 (0 - 48)

Event ID: 7517.240919134203.wav

Time: 2024-09-19 13:42UTC to 2024-09-19 13:48UTC

Event contains 562 original clicks, 281 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 125 clicks) .

Median statistics for 125 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.17
Median 10dB Center Frequency [kHz] 6.49
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (5.37 - 6.92)
Median 10dB Bandwidth [kHz] (lower-upper) 5.17 (3.81 - 9.01)
Median duration [μs] (25-75 percentile) 5.2 (0 - 39)

Event ID: 7517.240919135403.wav

Time: 2024-09-19 13:54UTC to 2024-09-19 14:00UTC

Event contains 568 original clicks, 284 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 141 clicks) .

Median statistics for 141 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.85
Median 10dB Center Frequency [kHz] 6.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (4.78 - 6.74)
Median 10dB Bandwidth [kHz] (lower-upper) 5.18 (3.86 - 8.98)
Median duration [μs] (25-75 percentile) 2.6 (0 - 36)

Event ID: 7517.240919141203.wav

Time: 2024-09-19 14:12UTC to 2024-09-19 14:18UTC

Event contains 762 original clicks, 381 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 226 clicks) .

Median statistics for 226 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.43
Median 10dB Center Frequency [kHz] 7.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.79 - 7.1)
Median 10dB Bandwidth [kHz] (lower-upper) 4.55 (3.96 - 9.16)
Median duration [μs] (25-75 percentile) 0 (0 - 34)

Event ID: 7517.240919141803.wav

Time: 2024-09-19 14:18UTC to 2024-09-19 14:24UTC

Event contains 594 original clicks, 297 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 146 clicks) .

Median statistics for 146 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.11
Median 10dB Center Frequency [kHz] 6.42
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (5.38 - 6.9)
Median 10dB Bandwidth [kHz] (lower-upper) 4.16 (3.98 - 8.74)
Median duration [μs] (25-75 percentile) 0 (0 - 20)

Event ID: 7517.240919142403.wav

Time: 2024-09-19 14:24UTC to 2024-09-19 14:30UTC

Event contains 528 original clicks, 264 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 130 clicks) .

Median statistics for 130 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.18
Median 10dB Center Frequency [kHz] 6.42
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 ( 5.5 - 6.97)
Median 10dB Bandwidth [kHz] (lower-upper) 4.93 (3.86 - 8.9)
Median duration [μs] (25-75 percentile) 0 (0 - 31)

Event ID: 7517.240919143003.wav

Time: 2024-09-19 14:30UTC to 2024-09-19 14:36UTC

Event contains 428 original clicks, 214 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 113 clicks) .

Median statistics for 113 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.03
Median 10dB Center Frequency [kHz] 6.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (5.14 - 6.91)
Median 10dB Bandwidth [kHz] (lower-upper) 4.81 (3.89 - 8.95)
Median duration [μs] (25-75 percentile) 2.6 (0 - 39)

Event ID: 7517.240920205403.wav

Time: 2024-09-20 20:54UTC to 2024-09-20 21:00UTC

Event contains 458 original clicks, 229 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 145 clicks) .

Median statistics for 145 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.78
Median 10dB Center Frequency [kHz] 6.12
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (4.87 - 6.67)
Median 10dB Bandwidth [kHz] (lower-upper) 3.8 ( 4 - 8.47)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921014203.wav

Time: 2024-09-21 01:42UTC to 2024-09-21 01:48UTC

Event contains 402 original clicks, 201 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 164 clicks) .

Median statistics for 164 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.1
Median 10dB Center Frequency [kHz] 6.24
Median 3dB Bandwidth [kHz] (lower-upper) 1.42 (5.09 - 6.89)
Median 10dB Bandwidth [kHz] (lower-upper) 4.51 ( 3.8 - 8.53)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240921021803.wav

Time: 2024-09-21 02:18UTC to 2024-09-21 02:24UTC

Event contains 586 original clicks, 293 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 193 clicks) .

Median statistics for 193 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.44
Median 10dB Center Frequency [kHz] 7.46
Median 3dB Bandwidth [kHz] (lower-upper) 1.22 (6.59 - 8.24)
Median 10dB Bandwidth [kHz] (lower-upper) 3.83 (5.33 - 9.37)
Median duration [μs] (25-75 percentile) 0 (0 - 3)

Event ID: 7517.240921022403.wav

Time: 2024-09-21 02:24UTC to 2024-09-21 02:30UTC

Event contains 492 original clicks, 246 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 155 clicks) .

Median statistics for 155 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.94
Median 10dB Center Frequency [kHz] 7.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.22 (6.28 - 7.52)
Median 10dB Bandwidth [kHz] (lower-upper) 3.44 ( 5.2 - 8.87)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921023003.wav

Time: 2024-09-21 02:30UTC to 2024-09-21 02:36UTC

Event contains 490 original clicks, 245 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 147 clicks) .

Median statistics for 147 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.6
Median 10dB Center Frequency [kHz] 6.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.37 (5.95 - 7.21)
Median 10dB Bandwidth [kHz] (lower-upper) 3.84 (4.11 - 9)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921023603.wav

Time: 2024-09-21 02:36UTC to 2024-09-21 02:42UTC

Event contains 412 original clicks, 206 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 131 clicks) .

Median statistics for 131 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.49
Median 10dB Center Frequency [kHz] 6.67
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 ( 5.7 - 7.33)
Median 10dB Bandwidth [kHz] (lower-upper) 3.91 (4.45 - 8.73)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921024203.wav

Time: 2024-09-21 02:42UTC to 2024-09-21 02:48UTC

Event contains 872 original clicks, 436 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 252 clicks) .

Median statistics for 252 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.2
Median 3dB Center Frequency [kHz] 5.93
Median 10dB Center Frequency [kHz] 6.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (5.18 - 6.7)
Median 10dB Bandwidth [kHz] (lower-upper) 3.66 (4.13 - 8.13)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921024803.wav

Time: 2024-09-21 02:48UTC to 2024-09-21 02:54UTC

Event contains 572 original clicks, 286 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 182 clicks) .

Median statistics for 182 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.1
Median 10dB Center Frequency [kHz] 6.18
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (5.41 - 6.86)
Median 10dB Bandwidth [kHz] (lower-upper) 3.92 (4.23 - 8.42)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921025403.wav

Time: 2024-09-21 02:54UTC to 2024-09-21 03:00UTC

Event contains 812 original clicks, 406 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 236 clicks) .

Median statistics for 236 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.64
Median 10dB Center Frequency [kHz] 5.89
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (4.97 - 6.4)
Median 10dB Bandwidth [kHz] (lower-upper) 3.74 (3.93 - 7.94)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921031337.wav

Time: 2024-09-21 03:13UTC to 2024-09-21 03:19UTC

Event contains 880 original clicks, 440 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 283 clicks) .

Median statistics for 283 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.15
Median 10dB Center Frequency [kHz] 7.03
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (6.35 - 7.81)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 (4.87 - 9.04)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921032537.wav

Time: 2024-09-21 03:25UTC to 2024-09-21 03:31UTC

Event contains 752 original clicks, 376 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 250 clicks) .

Median statistics for 250 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.13
Median 10dB Center Frequency [kHz] 6.38
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (5.48 - 6.85)
Median 10dB Bandwidth [kHz] (lower-upper) 3.52 (4.29 - 8.28)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240921033137.wav

Time: 2024-09-21 03:31UTC to 2024-09-21 03:37UTC

Event contains 960 original clicks, 480 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 275 clicks) .

Median statistics for 275 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.44
Median 10dB Center Frequency [kHz] 6.58
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.53 - 7.14)
Median 10dB Bandwidth [kHz] (lower-upper) 3.76 (4.08 - 8.69)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921033737.wav

Time: 2024-09-21 03:37UTC to 2024-09-21 03:43UTC

Event contains 1134 original clicks, 567 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 417 clicks) .

Median statistics for 417 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.63
Median 10dB Center Frequency [kHz] 6.7
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (5.57 - 7.53)
Median 10dB Bandwidth [kHz] (lower-upper) 4.74 (4.07 - 9.39)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7517.240921034337.wav

Time: 2024-09-21 03:43UTC to 2024-09-21 03:49UTC

Event contains 842 original clicks, 421 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 313 clicks) .

Median statistics for 313 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.78
Median 10dB Center Frequency [kHz] 6.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.56 ( 5.9 - 7.66)
Median 10dB Bandwidth [kHz] (lower-upper) 5.05 (3.74 - 9.56)
Median duration [μs] (25-75 percentile) 89 (0 - 430)

Event ID: 7517.240921034937.wav

Time: 2024-09-21 03:49UTC to 2024-09-21 03:55UTC

Event contains 618 original clicks, 309 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 177 clicks) .

Median statistics for 177 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.91
Median 10dB Center Frequency [kHz] 6.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 ( 6 - 7.68)
Median 10dB Bandwidth [kHz] (lower-upper) 3.43 (4.51 - 8.72)
Median duration [μs] (25-75 percentile) 0 (0 - 313)

Event ID: 7517.240921040737.wav

Time: 2024-09-21 04:07UTC to 2024-09-21 04:13UTC

Event contains 830 original clicks, 415 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 270 clicks) .

Median statistics for 270 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.49
Median 10dB Center Frequency [kHz] 7.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (6.56 - 8.31)
Median 10dB Bandwidth [kHz] (lower-upper) 4.39 (4.41 - 9.84)
Median duration [μs] (25-75 percentile) 0 (0 - 7)

Event ID: 7517.240921041337.wav

Time: 2024-09-21 04:13UTC to 2024-09-21 04:19UTC

Event contains 872 original clicks, 436 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 266 clicks) .

Median statistics for 266 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.87
Median 10dB Center Frequency [kHz] 6.08
Median 3dB Bandwidth [kHz] (lower-upper) 1.44 (5.02 - 6.8)
Median 10dB Bandwidth [kHz] (lower-upper) 3.89 (3.66 - 8.14)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240921041937.wav

Time: 2024-09-21 04:19UTC to 2024-09-21 04:25UTC

Event contains 714 original clicks, 357 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 221 clicks) .

Median statistics for 221 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.03
Median 10dB Center Frequency [kHz] 6.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (5.33 - 6.75)
Median 10dB Bandwidth [kHz] (lower-upper) 3.78 (4.19 - 8.38)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921044337.wav

Time: 2024-09-21 04:43UTC to 2024-09-21 04:49UTC

Event contains 524 original clicks, 262 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 166 clicks) .

Median statistics for 166 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.69
Median 10dB Center Frequency [kHz] 6.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.21 (5.99 - 7.33)
Median 10dB Bandwidth [kHz] (lower-upper) 3.58 (4.08 - 8.41)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921093137.wav

Time: 2024-09-21 09:31UTC to 2024-09-21 09:37UTC

Event contains 492 original clicks, 246 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 120 clicks) .

Median statistics for 120 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.33
Median 10dB Center Frequency [kHz] 8.51
Median 3dB Bandwidth [kHz] (lower-upper) 1.5 (7.56 - 9.28)
Median 10dB Bandwidth [kHz] (lower-upper) 4.69 (5.96 - 11)
Median duration [μs] (25-75 percentile) 0 (0 - 111)

Event ID: 7517.240921093737.wav

Time: 2024-09-21 09:37UTC to 2024-09-21 09:43UTC

Event contains 584 original clicks, 292 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 235 clicks) .

Median statistics for 235 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.32
Median 10dB Center Frequency [kHz] 8.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.31 (6.66 - 8.72)
Median 10dB Bandwidth [kHz] (lower-upper) 4.65 ( 5.2 - 10.6)
Median duration [μs] (25-75 percentile) 0 (0 - 155)

Event ID: 7517.240921094337.wav

Time: 2024-09-21 09:43UTC to 2024-09-21 09:49UTC

Event contains 486 original clicks, 243 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 178 clicks) .

Median statistics for 178 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.79
Median 10dB Center Frequency [kHz] 7.85
Median 3dB Bandwidth [kHz] (lower-upper) 1.65 (6.41 - 8.89)
Median 10dB Bandwidth [kHz] (lower-upper) 4.64 ( 5.1 - 10.5)
Median duration [μs] (25-75 percentile) 0 (0 - 7)

Event ID: 7517.240921103737.wav

Time: 2024-09-21 10:37UTC to 2024-09-21 10:43UTC

Event contains 474 original clicks, 237 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 138 clicks) .

Median statistics for 138 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.18
Median 10dB Center Frequency [kHz] 8.57
Median 3dB Bandwidth [kHz] (lower-upper) 1.83 (7.08 - 9.3)
Median 10dB Bandwidth [kHz] (lower-upper) 5.04 (5.88 - 11.1)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921104937.wav

Time: 2024-09-21 10:49UTC to 2024-09-21 10:55UTC

Event contains 630 original clicks, 315 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .

Median statistics for 220 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.48
Median 10dB Center Frequency [kHz] 7.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (6.66 - 8.34)
Median 10dB Bandwidth [kHz] (lower-upper) 4.16 (5.07 - 9.52)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240921110137.wav

Time: 2024-09-21 11:01UTC to 2024-09-21 11:07UTC

Event contains 666 original clicks, 333 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 252 clicks) .

Median statistics for 252 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.32
Median 10dB Center Frequency [kHz] 7.52
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (6.64 - 8.23)
Median 10dB Bandwidth [kHz] (lower-upper) 4.05 (5.48 - 9.85)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240921112537.wav

Time: 2024-09-21 11:25UTC to 2024-09-21 11:31UTC

Event contains 514 original clicks, 257 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 103 clicks) .

Median statistics for 103 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.3
Median 10dB Center Frequency [kHz] 6.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.56 (5.24 - 7.32)
Median 10dB Bandwidth [kHz] (lower-upper) 3.78 (4.27 - 8.37)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240922091937.wav

Time: 2024-09-22 09:19UTC to 2024-09-22 09:25UTC

Event contains 430 original clicks, 215 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 175 clicks) .

Median statistics for 175 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.46
Median 10dB Center Frequency [kHz] 6.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (5.76 - 7.04)
Median 10dB Bandwidth [kHz] (lower-upper) 2.96 (4.73 - 8.5)
Median duration [μs] (25-75 percentile) 0 (0 - 252)

Event ID: 7517.240922095537.wav

Time: 2024-09-22 09:55UTC to 2024-09-22 10:01UTC

Event contains 560 original clicks, 280 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 212 clicks) .

Median statistics for 212 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.01
Median 10dB Center Frequency [kHz] 6.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (5.26 - 6.98)
Median 10dB Bandwidth [kHz] (lower-upper) 3.45 (3.96 - 8.81)
Median duration [μs] (25-75 percentile) 1.3 (0 - 253)

Event ID: 7517.240922101937.wav

Time: 2024-09-22 10:19UTC to 2024-09-22 10:25UTC

Event contains 402 original clicks, 201 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 119 clicks) .

Median statistics for 119 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.89
Median 10dB Center Frequency [kHz] 6.09
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 (5.38 - 6.66)
Median 10dB Bandwidth [kHz] (lower-upper) 3.51 ( 4.1 - 8.21)
Median duration [μs] (25-75 percentile) 0 (0 - 1)

Event ID: 7517.240922104337.wav

Time: 2024-09-22 10:43UTC to 2024-09-22 10:49UTC

Event contains 644 original clicks, 322 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 248 clicks) .

Median statistics for 248 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.88
Median 10dB Center Frequency [kHz] 6.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.05 - 7.4)
Median 10dB Bandwidth [kHz] (lower-upper) 3.59 (4.27 - 8.91)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240922110737.wav

Time: 2024-09-22 11:07UTC to 2024-09-22 11:13UTC

Event contains 668 original clicks, 334 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 249 clicks) .

Median statistics for 249 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.5
Median 10dB Center Frequency [kHz] 6.59
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (5.83 - 7.18)
Median 10dB Bandwidth [kHz] (lower-upper) 3.08 (4.45 - 8.47)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240922111337.wav

Time: 2024-09-22 11:13UTC to 2024-09-22 11:19UTC

Event contains 580 original clicks, 290 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 220 clicks) .

Median statistics for 220 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.36
Median 10dB Center Frequency [kHz] 7.37
Median 3dB Bandwidth [kHz] (lower-upper) 1 (6.78 - 7.87)
Median 10dB Bandwidth [kHz] (lower-upper) 3.39 (5.18 - 9.42)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240922151337.wav

Time: 2024-09-22 15:13UTC to 2024-09-22 15:19UTC

Event contains 870 original clicks, 435 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 342 clicks) .

Median statistics for 342 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.74
Median 10dB Center Frequency [kHz] 6.04
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (4.94 - 6.58)
Median 10dB Bandwidth [kHz] (lower-upper) 3.59 (3.85 - 8.05)
Median duration [μs] (25-75 percentile) 0 (0 - 174)

Event ID: 7517.240922151937.wav

Time: 2024-09-22 15:19UTC to 2024-09-22 15:25UTC

Event contains 1188 original clicks, 594 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 501 clicks) .

Median statistics for 501 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.03
Median 10dB Center Frequency [kHz] 6.02
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (5.16 - 6.87)
Median 10dB Bandwidth [kHz] (lower-upper) 3.64 (4.06 - 8.12)
Median duration [μs] (25-75 percentile) 0 (0 - 102)

Event ID: 7517.240922152537.wav

Time: 2024-09-22 15:25UTC to 2024-09-22 15:31UTC

Event contains 552 original clicks, 276 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 191 clicks) .

Median statistics for 191 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.88
Median 10dB Center Frequency [kHz] 7.17
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (6.33 - 7.64)
Median 10dB Bandwidth [kHz] (lower-upper) 3.38 (5.05 - 9.19)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240922161337.wav

Time: 2024-09-22 16:13UTC to 2024-09-22 16:19UTC

Event contains 520 original clicks, 260 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 202 clicks) .

Median statistics for 202 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.74
Median 10dB Center Frequency [kHz] 6.06
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (5.04 - 6.55)
Median 10dB Bandwidth [kHz] (lower-upper) 3.71 (4.17 - 8.14)
Median duration [μs] (25-75 percentile) 0 (0 - 13)

Event ID: 7517.240922161937.wav

Time: 2024-09-22 16:19UTC to 2024-09-22 16:25UTC

Event contains 618 original clicks, 309 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 232 clicks) .

Median statistics for 232 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.23
Median 10dB Center Frequency [kHz] 7.31
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (6.59 - 7.88)
Median 10dB Bandwidth [kHz] (lower-upper) 3.4 (5.22 - 9.16)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240922162537.wav

Time: 2024-09-22 16:25UTC to 2024-09-22 16:31UTC

Event contains 752 original clicks, 376 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 293 clicks) .

Median statistics for 293 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.78
Median 10dB Center Frequency [kHz] 6.11
Median 3dB Bandwidth [kHz] (lower-upper) 1.13 ( 5.1 - 6.6)
Median 10dB Bandwidth [kHz] (lower-upper) 3.28 (3.88 - 8.14)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240922163737.wav

Time: 2024-09-22 16:37UTC to 2024-09-22 16:43UTC

Event contains 838 original clicks, 419 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 343 clicks) .

Median statistics for 343 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.75
Median 10dB Center Frequency [kHz] 6.74
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (6.13 - 7.27)
Median 10dB Bandwidth [kHz] (lower-upper) 3.1 (4.79 - 8.85)
Median duration [μs] (25-75 percentile) 36 (0 - 1000)

Event ID: 7517.240922164337.wav

Time: 2024-09-22 16:43UTC to 2024-09-22 16:49UTC

Event contains 662 original clicks, 331 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 272 clicks) .

Median statistics for 272 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.66
Median 10dB Center Frequency [kHz] 5.56
Median 3dB Bandwidth [kHz] (lower-upper) 0.945 (5.03 - 6.38)
Median 10dB Bandwidth [kHz] (lower-upper) 2.82 (3.69 - 7.37)
Median duration [μs] (25-75 percentile) 0 (0 - 337)

Event ID: 7517.240922170737.wav

Time: 2024-09-22 17:07UTC to 2024-09-22 17:13UTC

Event contains 620 original clicks, 310 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 246 clicks) .

Median statistics for 246 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.5
Median 10dB Center Frequency [kHz] 6.68
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (5.84 - 7.26)
Median 10dB Bandwidth [kHz] (lower-upper) 3.11 (4.72 - 8.83)
Median duration [μs] (25-75 percentile) 0 (0 - 26)

Event ID: 7517.240922171337.wav

Time: 2024-09-22 17:13UTC to 2024-09-22 17:19UTC

Event contains 876 original clicks, 438 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 376 clicks) .

Median statistics for 376 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6
Median 10dB Center Frequency [kHz] 6.28
Median 3dB Bandwidth [kHz] (lower-upper) 0.976 (5.44 - 6.71)
Median 10dB Bandwidth [kHz] (lower-upper) 3.27 (4.17 - 8.32)
Median duration [μs] (25-75 percentile) 0 (0 - 357)

Event ID: 7517.240922171937.wav

Time: 2024-09-22 17:19UTC to 2024-09-22 17:25UTC

Event contains 1080 original clicks, 540 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 483 clicks) .

Median statistics for 483 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.18
Median 10dB Center Frequency [kHz] 7.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (6.27 - 8.04)
Median 10dB Bandwidth [kHz] (lower-upper) 3.74 (4.41 - 9.55)
Median duration [μs] (25-75 percentile) 115 (0 - 1000)

Event ID: 7517.240922172537.wav

Time: 2024-09-22 17:25UTC to 2024-09-22 17:31UTC

Event contains 1264 original clicks, 632 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 561 clicks) .

Median statistics for 561 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.61
Median 10dB Center Frequency [kHz] 7.5
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 ( 7 - 8.26)
Median 10dB Bandwidth [kHz] (lower-upper) 3.93 (5.63 - 9.79)
Median duration [μs] (25-75 percentile) 133 (0 - 1000)

Event ID: 7517.240922173137.wav

Time: 2024-09-22 17:31UTC to 2024-09-22 17:37UTC

Event contains 1060 original clicks, 530 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 497 clicks) .

Median statistics for 497 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.22
Median 10dB Center Frequency [kHz] 7.34
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (6.31 - 7.91)
Median 10dB Bandwidth [kHz] (lower-upper) 3.9 (4.86 - 9.35)
Median duration [μs] (25-75 percentile) 328 (18 - 1000)

Event ID: 7517.240922173737.wav

Time: 2024-09-22 17:37UTC to 2024-09-22 17:43UTC

Event contains 1164 original clicks, 582 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 544 clicks) .

Median statistics for 544 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 8.05
Median 10dB Center Frequency [kHz] 8.08
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (7.43 - 8.66)
Median 10dB Bandwidth [kHz] (lower-upper) 3.29 (6.16 - 9.7)
Median duration [μs] (25-75 percentile) 21 (0 - 313)

Event ID: 7517.240922174337.wav

Time: 2024-09-22 17:43UTC to 2024-09-22 17:49UTC

Event contains 1566 original clicks, 783 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 689 clicks) .

Median statistics for 689 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.78
Median 10dB Center Frequency [kHz] 7.78
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 ( 6.8 - 8.57)
Median 10dB Bandwidth [kHz] (lower-upper) 3.96 (5.32 - 9.8)
Median duration [μs] (25-75 percentile) 448 (10 - 1000)

Event ID: 7517.240922174937.wav

Time: 2024-09-22 17:49UTC to 2024-09-22 17:55UTC

Event contains 476 original clicks, 238 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 189 clicks) .

Median statistics for 189 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.54
Median 10dB Center Frequency [kHz] 6.78
Median 3dB Bandwidth [kHz] (lower-upper) 1.26 (5.76 - 7.53)
Median 10dB Bandwidth [kHz] (lower-upper) 3.87 (4.13 - 8.85)
Median duration [μs] (25-75 percentile) 5.2 (0 - 209)

Event ID: 7517.240922180737.wav

Time: 2024-09-22 18:07UTC to 2024-09-22 18:13UTC

Event contains 1260 original clicks, 630 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 563 clicks) .

Median statistics for 563 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.88
Median 10dB Center Frequency [kHz] 6.96
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (6.26 - 7.43)
Median 10dB Bandwidth [kHz] (lower-upper) 3.39 (4.68 - 8.75)
Median duration [μs] (25-75 percentile) 0 (0 - 283)

Event ID: 7517.240922181337.wav

Time: 2024-09-22 18:13UTC to 2024-09-22 18:19UTC

Event contains 1116 original clicks, 558 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 520 clicks) .

Median statistics for 520 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.28
Median 10dB Center Frequency [kHz] 7.13
Median 3dB Bandwidth [kHz] (lower-upper) 1.24 (6.57 - 7.98)
Median 10dB Bandwidth [kHz] (lower-upper) 4.2 (4.55 - 9.39)
Median duration [μs] (25-75 percentile) 87 (0 - 495)

Event ID: 7517.240922181937.wav

Time: 2024-09-22 18:19UTC to 2024-09-22 18:25UTC

Event contains 1144 original clicks, 572 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 527 clicks) .

Median statistics for 527 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 6.81
Median 10dB Center Frequency [kHz] 6.93
Median 3dB Bandwidth [kHz] (lower-upper) 1.66 (5.76 - 7.95)
Median 10dB Bandwidth [kHz] (lower-upper) 5.14 (3.54 - 9.76)
Median duration [μs] (25-75 percentile) 162 (9 - 1000)

Event ID: 7517.240922182537.wav

Time: 2024-09-22 18:25UTC to 2024-09-22 18:31UTC

Event contains 1244 original clicks, 622 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 530 clicks) .

Median statistics for 530 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7
Median 10dB Center Frequency [kHz] 6.92
Median 3dB Bandwidth [kHz] (lower-upper) 1.22 (6.24 - 7.76)
Median 10dB Bandwidth [kHz] (lower-upper) 4 (4.22 - 9.55)
Median duration [μs] (25-75 percentile) 153 (0 - 1000)

Event ID: 7517.240922183137.wav

Time: 2024-09-22 18:31UTC to 2024-09-22 18:37UTC

Event contains 1162 original clicks, 581 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 521 clicks) .

Median statistics for 521 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.18
Median 10dB Center Frequency [kHz] 7.11
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (6.43 - 7.98)
Median 10dB Bandwidth [kHz] (lower-upper) 3.62 (4.46 - 9.12)
Median duration [μs] (25-75 percentile) 50 (0 - 477)

Event ID: 7517.240922183737.wav

Time: 2024-09-22 18:37UTC to 2024-09-22 18:43UTC

Event contains 1170 original clicks, 585 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 529 clicks) .

Median statistics for 529 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.62
Median 10dB Center Frequency [kHz] 6.73
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (5.88 - 7.46)
Median 10dB Bandwidth [kHz] (lower-upper) 4.19 (4.33 - 9.13)
Median duration [μs] (25-75 percentile) 78 (0 - 276)

Event ID: 7517.240922184337.wav

Time: 2024-09-22 18:43UTC to 2024-09-22 18:49UTC

Event contains 658 original clicks, 329 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 283 clicks) .

Median statistics for 283 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.98
Median 10dB Center Frequency [kHz] 6.01
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (5.32 - 6.57)
Median 10dB Bandwidth [kHz] (lower-upper) 3.52 ( 4 - 8.24)
Median duration [μs] (25-75 percentile) 21 (0 - 255)

Event ID: 7517.240922190137.wav

Time: 2024-09-22 19:01UTC to 2024-09-22 19:07UTC

Event contains 1168 original clicks, 584 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 509 clicks) .

Median statistics for 509 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.24
Median 10dB Center Frequency [kHz] 7.1
Median 3dB Bandwidth [kHz] (lower-upper) 1.23 (6.48 - 7.83)
Median 10dB Bandwidth [kHz] (lower-upper) 3.9 ( 5.1 - 9.19)
Median duration [μs] (25-75 percentile) 76 (0 - 420)

Event ID: 7517.240922190737.wav

Time: 2024-09-22 19:07UTC to 2024-09-22 19:13UTC

Event contains 1388 original clicks, 694 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 618 clicks) .

Median statistics for 618 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.48
Median 10dB Center Frequency [kHz] 7.33
Median 3dB Bandwidth [kHz] (lower-upper) 1.52 (6.59 - 8.27)
Median 10dB Bandwidth [kHz] (lower-upper) 4.26 (5.11 - 9.64)
Median duration [μs] (25-75 percentile) 78 (0 - 399)

Event ID: 7517.240922191937.wav

Time: 2024-09-22 19:19UTC to 2024-09-22 19:25UTC

Event contains 990 original clicks, 495 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 446 clicks) .

Median statistics for 446 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.27
Median 10dB Center Frequency [kHz] 7.38
Median 3dB Bandwidth [kHz] (lower-upper) 1.61 (6.39 - 8.1)
Median 10dB Bandwidth [kHz] (lower-upper) 4.26 (4.47 - 9.5)
Median duration [μs] (25-75 percentile) 211 (26 - 1000)

Event ID: 7517.240922192537.wav

Time: 2024-09-22 19:25UTC to 2024-09-22 19:31UTC

Event contains 1034 original clicks, 517 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 482 clicks) .

Median statistics for 482 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.18
Median 10dB Center Frequency [kHz] 6.29
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 ( 5.4 - 7.03)
Median 10dB Bandwidth [kHz] (lower-upper) 3.72 (3.78 - 8.66)
Median duration [μs] (25-75 percentile) 150 (0 - 481)

Event ID: 7517.240922193137.wav

Time: 2024-09-22 19:31UTC to 2024-09-22 19:37UTC

Event contains 1032 original clicks, 516 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 480 clicks) .

Median statistics for 480 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.7
Median 10dB Center Frequency [kHz] 6.87
Median 3dB Bandwidth [kHz] (lower-upper) 1.61 (5.79 - 7.68)
Median 10dB Bandwidth [kHz] (lower-upper) 4.86 (3.96 - 9.66)
Median duration [μs] (25-75 percentile) 102 (0 - 325)

Event ID: 7517.240922193737.wav

Time: 2024-09-22 19:37UTC to 2024-09-22 19:43UTC

Event contains 934 original clicks, 467 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 421 clicks) .

Median statistics for 421 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 6.2
Median 10dB Center Frequency [kHz] 6.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.78 (4.92 - 7.68)
Median 10dB Bandwidth [kHz] (lower-upper) 4.43 (3.58 - 9.2)
Median duration [μs] (25-75 percentile) 89 (0 - 276)

Event ID: 7517.240922200137.wav

Time: 2024-09-22 20:01UTC to 2024-09-22 20:07UTC

Event contains 742 original clicks, 371 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 307 clicks) .

Median statistics for 307 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.9
Median 10dB Center Frequency [kHz] 5.97
Median 3dB Bandwidth [kHz] (lower-upper) 1.12 (5.14 - 6.56)
Median 10dB Bandwidth [kHz] (lower-upper) 3.05 (4.02 - 7.52)
Median duration [μs] (25-75 percentile) 0 (0 - 184)

Event ID: 7517.240922200737.wav

Time: 2024-09-22 20:07UTC to 2024-09-22 20:13UTC

Event contains 732 original clicks, 366 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 287 clicks) .

Median statistics for 287 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.22
Median 10dB Center Frequency [kHz] 6.41
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 ( 5.6 - 7.01)
Median 10dB Bandwidth [kHz] (lower-upper) 3.19 (4.18 - 8.52)
Median duration [μs] (25-75 percentile) 0 (0 - 123)

Event ID: 7517.240922201937.wav

Time: 2024-09-22 20:19UTC to 2024-09-22 20:25UTC

Event contains 632 original clicks, 316 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 244 clicks) .

Median statistics for 244 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 7
Median 10dB Center Frequency [kHz] 7.08
Median 3dB Bandwidth [kHz] (lower-upper) 1.18 (6.14 - 7.57)
Median 10dB Bandwidth [kHz] (lower-upper) 3.41 (4.59 - 9.12)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240922203137.wav

Time: 2024-09-22 20:31UTC to 2024-09-22 20:37UTC

Event contains 650 original clicks, 325 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 260 clicks) .

Median statistics for 260 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.47
Median 10dB Center Frequency [kHz] 6.38
Median 3dB Bandwidth [kHz] (lower-upper) 1.2 (5.82 - 7.09)
Median 10dB Bandwidth [kHz] (lower-upper) 3.98 (4.09 - 8.72)
Median duration [μs] (25-75 percentile) 0 (0 - 175)

Event ID: 7517.240922230137.wav

Time: 2024-09-22 23:01UTC to 2024-09-22 23:07UTC

Event contains 448 original clicks, 224 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 143 clicks) .

Median statistics for 143 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.95
Median 10dB Center Frequency [kHz] 6.44
Median 3dB Bandwidth [kHz] (lower-upper) 1.34 (5.26 - 6.79)
Median 10dB Bandwidth [kHz] (lower-upper) 4.19 (4.03 - 8.81)
Median duration [μs] (25-75 percentile) 0 (0 - 0)

Event ID: 7517.240922230737.wav

Time: 2024-09-22 23:07UTC to 2024-09-22 23:13UTC

Event contains 746 original clicks, 373 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 307 clicks) .

Median statistics for 307 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.81
Median 10dB Center Frequency [kHz] 6.94
Median 3dB Bandwidth [kHz] (lower-upper) 1 (6.27 - 7.3)
Median 10dB Bandwidth [kHz] (lower-upper) 2.86 ( 4.9 - 8.8)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240922235537.wav

Time: 2024-09-22 23:55UTC to 2024-09-23 00:01UTC

Event contains 616 original clicks, 308 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 226 clicks) .

Median statistics for 226 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.5
Median 10dB Center Frequency [kHz] 6.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.15 (5.92 - 7.19)
Median 10dB Bandwidth [kHz] (lower-upper) 3.35 (4.63 - 8.97)
Median duration [μs] (25-75 percentile) 0 (0 - 36)

Event ID: 7517.240923000137.wav

Time: 2024-09-23 00:01UTC to 2024-09-23 00:07UTC

Event contains 568 original clicks, 284 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 211 clicks) .

Median statistics for 211 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.73
Median 10dB Center Frequency [kHz] 6.38
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (5.09 - 6.76)
Median 10dB Bandwidth [kHz] (lower-upper) 3.6 (4.29 - 8.8)
Median duration [μs] (25-75 percentile) 0 (0 - 21)

Event ID: 7517.240923000737.wav

Time: 2024-09-23 00:07UTC to 2024-09-23 00:13UTC

Event contains 1156 original clicks, 578 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 430 clicks) .

Median statistics for 430 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.89
Median 10dB Center Frequency [kHz] 6.38
Median 3dB Bandwidth [kHz] (lower-upper) 1.05 (5.14 - 6.75)
Median 10dB Bandwidth [kHz] (lower-upper) 3.34 (3.95 - 8.59)
Median duration [μs] (25-75 percentile) 0 (0 - 5)

Event ID: 7517.240923001337.wav

Time: 2024-09-23 00:13UTC to 2024-09-23 00:19UTC

Event contains 1242 original clicks, 621 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 487 clicks) .

Median statistics for 487 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.4
Median 3dB Center Frequency [kHz] 6.21
Median 10dB Center Frequency [kHz] 6.45
Median 3dB Bandwidth [kHz] (lower-upper) 1.32 (5.51 - 6.91)
Median 10dB Bandwidth [kHz] (lower-upper) 4.07 ( 4 - 8.89)
Median duration [μs] (25-75 percentile) 5.2 (0 - 305)

Event ID: 7517.240923001937.wav

Time: 2024-09-23 00:19UTC to 2024-09-23 00:25UTC

Event contains 712 original clicks, 356 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 294 clicks) .

Median statistics for 294 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.48
Median 10dB Center Frequency [kHz] 7.2
Median 3dB Bandwidth [kHz] (lower-upper) 0.965 (6.88 - 7.95)
Median 10dB Bandwidth [kHz] (lower-upper) 3.27 (5.18 - 9)
Median duration [μs] (25-75 percentile) 0 (0 - 25)

Event ID: 7517.240923004937.wav

Time: 2024-09-23 00:49UTC to 2024-09-23 00:55UTC

Event contains 938 original clicks, 469 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 425 clicks) .

Median statistics for 425 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.36
Median 10dB Center Frequency [kHz] 7.3
Median 3dB Bandwidth [kHz] (lower-upper) 1.07 (6.79 - 7.94)
Median 10dB Bandwidth [kHz] (lower-upper) 3.08 (5.32 - 9.02)
Median duration [μs] (25-75 percentile) 0 (0 - 391)

Event ID: 7517.240923005537.wav

Time: 2024-09-23 00:55UTC to 2024-09-23 01:01UTC

Event contains 1522 original clicks, 761 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 692 clicks) .

Median statistics for 692 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.04
Median 10dB Center Frequency [kHz] 7.01
Median 3dB Bandwidth [kHz] (lower-upper) 0.875 (6.52 - 7.53)
Median 10dB Bandwidth [kHz] (lower-upper) 2.44 (5.69 - 8.68)
Median duration [μs] (25-75 percentile) 0 (0 - 1000)

Event ID: 7517.240923010137.wav

Time: 2024-09-23 01:01UTC to 2024-09-23 01:07UTC

Event contains 1704 original clicks, 852 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 795 clicks) .

Median statistics for 795 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.6
Median 10dB Center Frequency [kHz] 7.23
Median 3dB Bandwidth [kHz] (lower-upper) 1.11 (6.94 - 8.15)
Median 10dB Bandwidth [kHz] (lower-upper) 3.14 (5.31 - 8.96)
Median duration [μs] (25-75 percentile) 269 (0 - 1084)

Event ID: 7517.240923010737.wav

Time: 2024-09-23 01:07UTC to 2024-09-23 01:13UTC

Event contains 1494 original clicks, 747 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 651 clicks) .

Median statistics for 651 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6
Median 3dB Center Frequency [kHz] 5.73
Median 10dB Center Frequency [kHz] 5.91
Median 3dB Bandwidth [kHz] (lower-upper) 1.02 ( 5.2 - 6.29)
Median 10dB Bandwidth [kHz] (lower-upper) 2.83 (3.93 - 7.72)
Median duration [μs] (25-75 percentile) 68 (0 - 1000)

Event ID: 7517.240923011337.wav

Time: 2024-09-23 01:13UTC to 2024-09-23 01:19UTC

Event contains 1686 original clicks, 843 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 736 clicks) .

Median statistics for 736 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.49
Median 10dB Center Frequency [kHz] 7.2
Median 3dB Bandwidth [kHz] (lower-upper) 1.27 (6.75 - 8.16)
Median 10dB Bandwidth [kHz] (lower-upper) 4.3 (4.33 - 9.37)
Median duration [μs] (25-75 percentile) 205 (0 - 1086)

Event ID: 7517.240923011937.wav

Time: 2024-09-23 01:19UTC to 2024-09-23 01:25UTC

Event contains 1778 original clicks, 889 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 788 clicks) .

Median statistics for 788 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.53
Median 10dB Center Frequency [kHz] 7.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.14 (6.89 - 8.15)
Median 10dB Bandwidth [kHz] (lower-upper) 3.9 (5.15 - 9.38)
Median duration [μs] (25-75 percentile) 65 (0 - 1000)

Event ID: 7517.240923012537.wav

Time: 2024-09-23 01:25UTC to 2024-09-23 01:31UTC

Event contains 1370 original clicks, 685 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 618 clicks) .

Median statistics for 618 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8
Median 3dB Center Frequency [kHz] 7.97
Median 10dB Center Frequency [kHz] 7.9
Median 3dB Bandwidth [kHz] (lower-upper) 1.17 (7.27 - 8.58)
Median 10dB Bandwidth [kHz] (lower-upper) 3.91 (5.84 - 9.75)
Median duration [μs] (25-75 percentile) 0 (0 - 487)

Event ID: 7517.240923013137.wav

Time: 2024-09-23 01:31UTC to 2024-09-23 01:37UTC

Event contains 2246 original clicks, 1123 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 895 clicks) .

Median statistics for 895 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.42
Median 10dB Center Frequency [kHz] 7.6
Median 3dB Bandwidth [kHz] (lower-upper) 1.09 (6.75 - 7.96)
Median 10dB Bandwidth [kHz] (lower-upper) 3.97 ( 4.9 - 9.58)
Median duration [μs] (25-75 percentile) 76 (0 - 1000)

Event ID: 7517.240923014937.wav

Time: 2024-09-23 01:49UTC to 2024-09-23 01:55UTC

Event contains 512 original clicks, 256 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 219 clicks) .

Median statistics for 219 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.63
Median 10dB Center Frequency [kHz] 6.46
Median 3dB Bandwidth [kHz] (lower-upper) 1.01 (6.11 - 7.17)
Median 10dB Bandwidth [kHz] (lower-upper) 3 (5.25 - 8.21)
Median duration [μs] (25-75 percentile) 0 (0 - 100)

Event ID: 7517.240923015537.wav

Time: 2024-09-23 01:55UTC to 2024-09-23 02:01UTC

Event contains 1110 original clicks, 555 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 481 clicks) .

Median statistics for 481 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.65
Median 10dB Center Frequency [kHz] 7.56
Median 3dB Bandwidth [kHz] (lower-upper) 1.36 (6.91 - 8.45)
Median 10dB Bandwidth [kHz] (lower-upper) 3.91 (5.08 - 9.41)
Median duration [μs] (25-75 percentile) 250 (0 - 1000)

Event ID: 7517.240923020137.wav

Time: 2024-09-23 02:01UTC to 2024-09-23 02:07UTC

Event contains 1576 original clicks, 788 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 655 clicks) .

Median statistics for 655 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.48
Median 10dB Center Frequency [kHz] 7.23
Median 3dB Bandwidth [kHz] (lower-upper) 1.28 (6.57 - 8.32)
Median 10dB Bandwidth [kHz] (lower-upper) 4.26 (4.54 - 9.52)
Median duration [μs] (25-75 percentile) 10 (0 - 203)

Event ID: 7517.240923020737.wav

Time: 2024-09-23 02:07UTC to 2024-09-23 02:13UTC

Event contains 1510 original clicks, 755 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 694 clicks) .

Median statistics for 694 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.42
Median 10dB Center Frequency [kHz] 7.28
Median 3dB Bandwidth [kHz] (lower-upper) 1.29 (6.69 - 8.2)
Median 10dB Bandwidth [kHz] (lower-upper) 4.06 (5.03 - 9.51)
Median duration [μs] (25-75 percentile) 10 (0 - 295)

Event ID: 7517.240923021337.wav

Time: 2024-09-23 02:13UTC to 2024-09-23 02:19UTC

Event contains 1310 original clicks, 655 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 536 clicks) .

Median statistics for 536 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.39
Median 10dB Center Frequency [kHz] 7.36
Median 3dB Bandwidth [kHz] (lower-upper) 1.45 (6.49 - 8.21)
Median 10dB Bandwidth [kHz] (lower-upper) 3.67 (4.84 - 9.41)
Median duration [μs] (25-75 percentile) 123 (0 - 1000)

Event ID: 7517.240923021937.wav

Time: 2024-09-23 02:19UTC to 2024-09-23 02:25UTC

Event contains 1596 original clicks, 798 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 729 clicks) .

Median statistics for 729 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.77
Median 10dB Center Frequency [kHz] 7.71
Median 3dB Bandwidth [kHz] (lower-upper) 1.3 (7.09 - 8.46)
Median 10dB Bandwidth [kHz] (lower-upper) 4.14 (5.43 - 9.66)
Median duration [μs] (25-75 percentile) 420 (0 - 1288)

Event ID: 7517.240923022537.wav

Time: 2024-09-23 02:25UTC to 2024-09-23 02:31UTC

Event contains 1686 original clicks, 843 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 653 clicks) .

Median statistics for 653 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.11
Median 10dB Center Frequency [kHz] 6.99
Median 3dB Bandwidth [kHz] (lower-upper) 1.19 (6.54 - 7.83)
Median 10dB Bandwidth [kHz] (lower-upper) 4.32 ( 4.5 - 9.45)
Median duration [μs] (25-75 percentile) 42 (0 - 1000)

Event ID: 7517.240923023137.wav

Time: 2024-09-23 02:31UTC to 2024-09-23 02:37UTC

Event contains 892 original clicks, 446 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 329 clicks) .

Median statistics for 329 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 8.4
Median 3dB Center Frequency [kHz] 8.29
Median 10dB Center Frequency [kHz] 8.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.62 (7.35 - 9.23)
Median 10dB Bandwidth [kHz] (lower-upper) 4.3 ( 5.9 - 10.3)
Median duration [μs] (25-75 percentile) 2.6 (0 - 266)

Event ID: 7517.240923024937.wav

Time: 2024-09-23 02:49UTC to 2024-09-23 02:55UTC

Event contains 838 original clicks, 419 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 391 clicks) .

Median statistics for 391 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.34
Median 10dB Center Frequency [kHz] 7.39
Median 3dB Bandwidth [kHz] (lower-upper) 1.16 (6.73 - 7.98)
Median 10dB Bandwidth [kHz] (lower-upper) 3.81 (5.78 - 9.22)
Median duration [μs] (25-75 percentile) 219 (0 - 1000)

Event ID: 7517.240923025537.wav

Time: 2024-09-23 02:55UTC to 2024-09-23 03:01UTC

Event contains 1146 original clicks, 573 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 514 clicks) .

Median statistics for 514 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.11
Median 10dB Center Frequency [kHz] 7.14
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (6.49 - 7.79)
Median 10dB Bandwidth [kHz] (lower-upper) 3.49 (4.97 - 9.12)
Median duration [μs] (25-75 percentile) 63 (0 - 347)

Event ID: 7517.240923030137.wav

Time: 2024-09-23 03:01UTC to 2024-09-23 03:07UTC

Event contains 950 original clicks, 475 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 442 clicks) .

Median statistics for 442 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.73
Median 10dB Center Frequency [kHz] 6.96
Median 3dB Bandwidth [kHz] (lower-upper) 1.46 (5.94 - 7.63)
Median 10dB Bandwidth [kHz] (lower-upper) 4.41 (4.22 - 9.12)
Median duration [μs] (25-75 percentile) 85 (0 - 477)

Event ID: 7517.240923030737.wav

Time: 2024-09-23 03:07UTC to 2024-09-23 03:13UTC

Event contains 758 original clicks, 379 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 325 clicks) .

Median statistics for 325 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.06
Median 10dB Center Frequency [kHz] 6.89
Median 3dB Bandwidth [kHz] (lower-upper) 1.33 (6.39 - 7.96)
Median 10dB Bandwidth [kHz] (lower-upper) 3.42 (4.97 - 8.96)
Median duration [μs] (25-75 percentile) 7.8 (0 - 266)

Event ID: 7517.240923031337.wav

Time: 2024-09-23 03:13UTC to 2024-09-23 03:19UTC

Event contains 1004 original clicks, 502 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 433 clicks) .

Median statistics for 433 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.6
Median 3dB Center Frequency [kHz] 7.42
Median 10dB Center Frequency [kHz] 7.18
Median 3dB Bandwidth [kHz] (lower-upper) 1.08 (6.66 - 8.27)
Median 10dB Bandwidth [kHz] (lower-upper) 3.18 (5.16 - 9.21)
Median duration [μs] (25-75 percentile) 0 (0 - 167)

Event ID: 7517.240923031937.wav

Time: 2024-09-23 03:19UTC to 2024-09-23 03:25UTC

Event contains 916 original clicks, 458 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 385 clicks) .

Median statistics for 385 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 7.2
Median 3dB Center Frequency [kHz] 7.06
Median 10dB Center Frequency [kHz] 6.86
Median 3dB Bandwidth [kHz] (lower-upper) 1.04 (6.47 - 7.57)
Median 10dB Bandwidth [kHz] (lower-upper) 3.03 (5.23 - 8.6)
Median duration [μs] (25-75 percentile) 0 (0 - 112)

Event ID: 7517.240923032537.wav

Time: 2024-09-23 03:25UTC to 2024-09-23 03:31UTC

Event contains 768 original clicks, 384 valid clicks after filtering.

Click plots and table

SNR histogram includes all filtered clicks. Other plots contain only clicks with SNR >= 15 dB (n = 308 clicks) .

Median statistics for 308 high SNR clicks with SNR >= 15 dB.
parameter value
Median Peak Frequency [kHz] 6.8
Median 3dB Center Frequency [kHz] 6.73
Median 10dB Center Frequency [kHz] 6.85
Median 3dB Bandwidth [kHz] (lower-upper) 0.894 (6.21 - 7.27)
Median 10dB Bandwidth [kHz] (lower-upper) 2.77 (5.33 - 8.55)
Median duration [μs] (25-75 percentile) 0 (0 - 212)

Clean up Event Table

# clean up the event table
evTable <- evTable[evTable$keep == TRUE,]
evTable <- subset(evTable, select = -keep)
# save event table as CSV
write.csv(evTable, file = file.path(params$path_dets, 
                                    paste0('eventTable_', params$mission, '_', 
                                           params$drift, '_', Sys.Date(),'.csv')))

#dbDisconnect(dbFile)

After additional filtering based on median peak frequency, 171 events events of 2223 original events remain.